18 lines
561 B
Rust
18 lines
561 B
Rust
|
|
// @generated - This file is generated by esquema-codegen (forked from atrium-codegen). DO NOT EDIT.
|
||
|
|
//!Definitions for the `my.spoor.content` namespace.
|
||
|
|
pub mod defs;
|
||
|
|
pub mod external;
|
||
|
|
pub mod media;
|
||
|
|
#[derive(Debug)]
|
||
|
|
pub struct External;
|
||
|
|
impl atrium_api::types::Collection for External {
|
||
|
|
const NSID: &'static str = "my.spoor.content.external";
|
||
|
|
type Record = external::Record;
|
||
|
|
}
|
||
|
|
#[derive(Debug)]
|
||
|
|
pub struct Media;
|
||
|
|
impl atrium_api::types::Collection for Media {
|
||
|
|
const NSID: &'static str = "my.spoor.content.media";
|
||
|
|
type Record = media::Record;
|
||
|
|
}
|