impl atom parsing

This commit is contained in:
John Turner
2025-10-23 00:52:35 -04:00
parent 6e4b45027e
commit 2e7d8cfbb9
5 changed files with 358 additions and 0 deletions

10
src/useflag/mod.rs Normal file
View File

@@ -0,0 +1,10 @@
pub mod parsers;
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct UseFlag(String);
impl UseFlag {
pub fn get(&self) -> &str {
self.0.as_str()
}
}