2020-01-10 12:00:48 +01:00
|
|
|
// Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
|
2020-01-29 04:17:20 +01:00
|
|
|
#![deny(unused_must_use)]
|
|
|
|
|
2019-12-24 23:59:33 +01:00
|
|
|
mod backend_proto;
|
2019-12-23 05:42:14 +01:00
|
|
|
|
2020-02-04 11:07:28 +01:00
|
|
|
pub fn version() -> &'static str {
|
|
|
|
include_str!("../../meta/version").trim()
|
|
|
|
}
|
|
|
|
|
2019-12-24 23:59:33 +01:00
|
|
|
pub mod backend;
|
2020-01-27 11:41:23 +01:00
|
|
|
pub mod cloze;
|
2019-12-24 04:33:44 +01:00
|
|
|
pub mod err;
|
2020-02-11 04:11:20 +01:00
|
|
|
pub mod latex;
|
2020-01-28 11:52:10 +01:00
|
|
|
pub mod media;
|
2019-12-27 09:14:19 +01:00
|
|
|
pub mod sched;
|
2019-12-24 05:05:15 +01:00
|
|
|
pub mod template;
|
2020-01-10 12:04:52 +01:00
|
|
|
pub mod template_filters;
|
2020-01-10 12:01:23 +01:00
|
|
|
pub mod text;
|
2020-02-10 05:19:39 +01:00
|
|
|
pub mod time;
|
|
|
|
pub mod types;
|