mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 15:32:23 -04:00
15 lines
310 B
Rust
15 lines
310 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 mod backend;
|
|
pub mod cloze;
|
|
pub mod err;
|
|
pub mod media;
|
|
pub mod sched;
|
|
pub mod template;
|
|
pub mod template_filters;
|
|
pub mod text;
|