mirror of
https://github.com/natsukagami/youmubot.git
synced 2025-04-10 04:30:29 +00:00
* New table `ignored_users` and queries * Update sqlx to 0.8 * Implement `ignore` command and add needed hooks
9 lines
196 B
Rust
9 lines
196 B
Rust
use crate::*;
|
|
use sqlx::{query, query_as, Executor};
|
|
|
|
/// The DateTime used in the package.
|
|
pub type DateTime = chrono::DateTime<chrono::Utc>;
|
|
|
|
pub mod ignore_list;
|
|
pub mod osu;
|
|
pub mod osu_user;
|