anki/rslib/src/prelude.rs
2020-11-06 10:21:51 +10:00

18 lines
484 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::{Note, NoteID},
notetype::NoteTypeID,
revlog::RevlogID,
timestamp::{TimestampMillis, TimestampSecs},
types::Usn,
};
pub use slog::{debug, Logger};