mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-05 21:37:55 +00:00
11 lines
141 B
Rust
11 lines
141 B
Rust
mod _util;
|
|
|
|
macro_rules! model {
|
|
($n:ident) => {
|
|
mod $n;
|
|
pub use $n::*;
|
|
};
|
|
}
|
|
|
|
model!(system);
|
|
model!(system_config);
|