diff --git a/src/imports.rs b/src/imports.rs new file mode 100644 index 0000000..6a49091 --- /dev/null +++ b/src/imports.rs @@ -0,0 +1,13 @@ +use crate::StyleSheetParser; + +pub struct Importer {} + +impl Importer { + pub fn import(path: &str) { + + } + + fn find_files() { + + } +} \ No newline at end of file diff --git a/src/main.rs b/src/main.rs index b8f4d59..ba9d7f4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -46,6 +46,7 @@ mod common; mod css; mod error; mod format; +mod imports; mod lexer; mod selector; mod style;