mirror of
https://github.com/ankitects/anki.git
synced 2025-12-02 01:17:10 -05:00
- Move media and meta code into appropriate modules. - Normalize/check for normalization when deserializing media entries.
14 lines
417 B
Rust
14 lines
417 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(self) use meta::{Meta, Version};
|
|
|
|
pub(self) use crate::backend_proto::{media_entries::MediaEntry, MediaEntries};
|