Move StarImport to its own module (#5186)

This commit is contained in:
Charlie Marsh 2023-06-20 13:12:46 -04:00 committed by GitHub
parent b369288833
commit 310abc769d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 9 deletions

View file

@ -7,6 +7,7 @@ mod model;
mod node;
mod reference;
mod scope;
mod star_import;
pub use binding::*;
pub use context::*;
@ -16,3 +17,4 @@ pub use model::*;
pub use node::*;
pub use reference::*;
pub use scope::*;
pub use star_import::*;