kalkutago/server/src/lib.rs

9 lines
162 B
Rust
Raw Normal View History

2023-07-22 19:46:52 +00:00
#![feature(proc_macro_hygiene, decl_macro, never_type)]
#[macro_use]
extern crate rocket;
pub mod api;
pub mod db;
pub mod entities;
pub mod error;
mod migrator;