#![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 tokenauth;
pub mod media;
pub mod micropub;

pub static MICROPUB_CLIENT: &[u8] = include_bytes!("./index.html");