pub use ooxml_core::opc::package::{
derive_content_type, next_rid, parse_content_types_public, rels_partname_for, OpcPackage,
};
pub mod ct {
pub use ooxml_core::opc::package::ct::*;
pub const PRESENTATION: &str =
"application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml";
pub const SLIDE: &str =
"application/vnd.openxmlformats-officedocument.presentationml.slide+xml";
pub const SLIDE_LAYOUT: &str =
"application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml";
pub const SLIDE_MASTER: &str =
"application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml";
pub const NOTES_SLIDE: &str =
"application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml";
pub const NOTES_MASTER: &str =
"application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml";
pub const COMMENTS: &str =
"application/vnd.openxmlformats-officedocument.presentationml.comments+xml";
pub const COMMENT_AUTHORS: &str =
"application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml";
}