13 lines
179 B
Rust
13 lines
179 B
Rust
#[macro_use]
|
|
extern crate rocket;
|
|
|
|
pub mod items {
|
|
include!(concat!(env!("OUT_DIR"), "/items.rs"));
|
|
}
|
|
|
|
pub mod auth;
|
|
pub mod proto_utils;
|
|
pub mod store;
|
|
|
|
pub use store::User;
|