mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 07:22:23 -04:00

Removes the dependency on a local path, and allows the unicode checks to be skipped if appropriate.
19 lines
565 B
Rust
19 lines
565 B
Rust
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
mod apkg;
|
|
mod colpkg;
|
|
mod media;
|
|
mod meta;
|
|
|
|
pub(crate) use apkg::NoteMeta;
|
|
pub(crate) use colpkg::export::export_colpkg_from_data;
|
|
pub use colpkg::import::import_colpkg;
|
|
pub use media::MediaIter;
|
|
pub use media::MediaIterEntry;
|
|
pub use media::MediaIterError;
|
|
pub(self) use meta::Meta;
|
|
pub(self) use meta::Version;
|
|
|
|
pub(self) use crate::pb::import_export::media_entries::MediaEntry;
|
|
pub(self) use crate::pb::import_export::MediaEntries;
|