Importer boilerplate

This commit is contained in:
ConnorSkees 2020-01-11 18:42:42 -05:00
parent d930659ffe
commit eccb02a426
2 changed files with 14 additions and 0 deletions

13
src/imports.rs Normal file
View File

@ -0,0 +1,13 @@
use crate::StyleSheetParser;
pub struct Importer {}
impl Importer {
pub fn import(path: &str) {
}
fn find_files() {
}
}

View File

@ -46,6 +46,7 @@ mod common;
mod css;
mod error;
mod format;
mod imports;
mod lexer;
mod selector;
mod style;