blob: 04fcdb7294a40706e988e416c9a0da32ff9bbf7b (
plain) (
tree)
|
|
// SPDX-License-Identifier: AGPL-3.0-only
#![feature(lazy_cell)]
mod http;
pub mod deserialize;
pub mod cache;
pub mod config;
pub mod ctx;
pub mod theming;
pub use config::CONFIG;
pub fn touch() {
cache::touch();
theming::touch();
}
|