mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00
15 lines
412 B
Rust
15 lines
412 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::CardID,
|
|
collection::Collection,
|
|
deckconf::DeckConfID,
|
|
decks::DeckID,
|
|
err::{AnkiError, Result},
|
|
notes::NoteID,
|
|
notetype::NoteTypeID,
|
|
timestamp::{TimestampMillis, TimestampSecs},
|
|
types::Usn,
|
|
};
|
|
pub use slog::{debug, Logger};
|