Koucha/koucha/src/db.rs
Julia Lange 99321e9a5d
db, add core user functionality and tests; db mod
Adds all the basic user functions, and tests for them.

This is also intializes the DB Module, which will have more things in it
2026-02-06 15:01:21 -08:00

11 lines
180 B
Rust

mod user;
pub use user::User;
macro_rules! define_key {
($name:ident) => {
#[derive(PartialEq, Debug, Copy, Clone)]
pub struct $name(i64);
};
}
define_key!(UserKey);