Anki/rslib/src/prelude.rs
Damien Elmes b51f03085e migrate card stats to backend
Currently this renders the HTML directly like the previous Python
implementation - doing it in JS would probably make more sense in the
future.
2020-06-15 17:22:16 +10:00

17 lines
476 B
Rust

// Copyright: Ankitects Pty Ltd and contributors
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
pub use crate::{
card::{Card, CardID},
collection::Collection,
deckconf::DeckConfID,
decks::DeckID,
err::{AnkiError, Result},
i18n::{tr_args, tr_strs, TR},
notes::NoteID,
notetype::NoteTypeID,
revlog::RevlogID,
timestamp::{TimestampMillis, TimestampSecs},
types::Usn,
};
pub use slog::{debug, Logger};