mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 15:32:23 -04:00
12 lines
375 B
Rust
12 lines
375 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 meta;
|
|
|
|
pub(crate) use colpkg::export::export_colpkg_from_data;
|
|
pub use colpkg::import::import_colpkg;
|
|
pub(self) use meta::{Meta, Version};
|
|
|
|
pub(self) use crate::backend_proto::{media_entries::MediaEntry, MediaEntries};
|