23 lines
438 B
Rust
23 lines
438 B
Rust
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
#![deny(unused_must_use)]
|
|
|
|
mod backend_proto;
|
|
|
|
pub fn version() -> &'static str {
|
|
include_str!("../../meta/version").trim()
|
|
}
|
|
|
|
pub mod backend;
|
|
pub mod cloze;
|
|
pub mod err;
|
|
pub mod latex;
|
|
pub mod media;
|
|
pub mod sched;
|
|
pub mod template;
|
|
pub mod template_filters;
|
|
pub mod text;
|
|
pub mod time;
|
|
pub mod types;
|