chore: make folder names match crate name
This commit is contained in:
12
crates/aiken-project/src/options.rs
Normal file
12
crates/aiken-project/src/options.rs
Normal file
@@ -0,0 +1,12 @@
|
||||
pub struct Options {
|
||||
pub code_gen_mode: CodeGenMode,
|
||||
}
|
||||
|
||||
pub enum CodeGenMode {
|
||||
Test {
|
||||
match_tests: Option<String>,
|
||||
verbose: bool,
|
||||
},
|
||||
Build(bool),
|
||||
NoOp,
|
||||
}
|
||||
Reference in New Issue
Block a user