aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-02 16:35:41 +0000
committerFuwn <[email protected]>2021-05-02 16:35:41 +0000
commite70e58db5e434e40025ff737bc21a5062ef9b975 (patch)
treec7c69b448bf26a8cb86c78c29dda7ffe38de9056 /src/lib.rs
parentrefactor(todo): update todo style (diff)
downloadwhirl-e70e58db5e434e40025ff737bc21a5062ef9b975.tar.xz
whirl-e70e58db5e434e40025ff737bc21a5062ef9b975.zip
feat(global): begin implementing api
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 4b057f0..193a0d1 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,15 +1,24 @@
// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
-#![feature(type_ascription, hash_set_entry, type_name_of_val)]
+#![feature(
+ type_ascription,
+ hash_set_entry,
+ type_name_of_val,
+ decl_macro,
+ proc_macro_hygiene
+)]
#![warn(rust_2018_idioms)]
#[macro_use]
extern crate log;
+#[macro_use]
+extern crate rocket;
pub mod cli;
pub mod config;
+pub mod api;
pub mod db;
pub mod server;
pub mod utils;