youmubot/youmubot-db-sql/src/models/mod.rs
Natsu Kagami 7c0cbea716
Some checks are pending
Build and Test / Format check (push) Waiting to run
Build and Test / Lint (push) Waiting to run
Build and Test / Test (push) Waiting to run
Build and Test / Build (push) Waiting to run
ignore command (#59)
* New table `ignored_users` and queries

* Update sqlx to 0.8

* Implement `ignore` command and add needed hooks
2025-03-27 15:13:00 +01:00

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;