about summary refs log tree commit diff
path: root/kittybox-rs/src/lib.rs
blob: c1683d9fed2b617b7cdb93d9cfc57e449a5d5146 (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 tokenauth;
pub mod media;
pub mod micropub;

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