mirror of
https://github.com/lune-org/lune.git
synced 2025-05-04 10:43:57 +01:00
Make imports symmetric too
This commit is contained in:
parent
a0f55bc1ec
commit
64d49de3be
1 changed files with 6 additions and 2 deletions
|
@ -8,8 +8,12 @@ pub(crate) mod server;
|
|||
pub(crate) mod shared;
|
||||
pub(crate) mod url;
|
||||
|
||||
use self::client::config::RequestConfig;
|
||||
use self::shared::{request::Request, response::Response};
|
||||
#[allow(unused_imports)]
|
||||
use self::{
|
||||
client::config::RequestConfig,
|
||||
server::config::ResponseConfig,
|
||||
shared::{request::Request, response::Response},
|
||||
};
|
||||
|
||||
const TYPEDEFS: &str = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/types.d.luau"));
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue