15 lines
152 B
Rust
15 lines
152 B
Rust
|
use std::collections::HashMap;
|
||
|
|
||
|
use toml::Value;
|
||
|
use toml::Table;
|
||
|
|
||
|
pub mod hello;
|
||
|
pub mod lua;
|
||
|
pub mod discord;
|
||
|
|
||
|
pub mod loader;
|
||
|
|
||
|
pub trait Plugin {
|
||
|
|
||
|
}
|