blob: 84e9d6005aba85331f4dcafd68533f31c2231e8b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#![forbid(unsafe_code)]
#![warn(clippy::todo)]
/// Database abstraction layer for Kittybox, allowing the CMS to work with any kind of database.
pub mod database;
pub mod frontend;
pub mod indieauth;
pub mod media;
pub mod micropub;
pub static MICROPUB_CLIENT: &[u8] = include_bytes!("./index.html");
|