Re-export ruff_python_semantic members (#5094)

## Summary

This PR adds a more unified public API to `ruff_python_semantic`, so
that we don't need to do deeply nested imports all over the place.
This commit is contained in:
Charlie Marsh 2023-06-14 14:23:38 -04:00 committed by GitHub
parent a33bbe6335
commit 86ff1febea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
69 changed files with 129 additions and 146 deletions

View file

@ -1,9 +1,18 @@
pub mod analyze;
pub mod binding;
pub mod context;
pub mod definition;
pub mod globals;
pub mod model;
pub mod node;
pub mod reference;
pub mod scope;
mod binding;
mod context;
mod definition;
mod globals;
mod model;
mod node;
mod reference;
mod scope;
pub use binding::*;
pub use context::*;
pub use definition::*;
pub use globals::*;
pub use model::*;
pub use node::*;
pub use reference::*;
pub use scope::*;