#[cfg(feature = "audio")]
#[cfg_attr(docsrs, doc(cfg(feature = "audio")))]
pub mod audio;
pub mod leaves;
pub mod media;
pub mod media_file;
pub mod person;
#[cfg(feature = "subtitle")]
#[cfg_attr(docsrs, doc(cfg(feature = "subtitle")))]
pub mod subtitle;
#[cfg(feature = "video")]
#[cfg_attr(docsrs, doc(cfg(feature = "video")))]
pub mod video;
#[cfg(feature = "audio")]
pub use audio::{
PgAudioRow, PgAudioSegmentRow, PgAudioSegmentWordRow, PgAudioTrackIndexErrorRow, PgAudioTrackRow,
};
pub use leaves::{PgSceneAnnotationRow, PgSpeakerRow, PgUserTagRow, PgWatchedLocationRow};
pub use media::PgMediaRow;
pub use media_file::PgMediaFileRow;
pub use person::PgPersonRow;
#[cfg(feature = "subtitle")]
pub use subtitle::{
PgSubtitleCueAssRow, PgSubtitleCueBaseRow, PgSubtitleCueLrcRow, PgSubtitleCueLrcWordRow,
PgSubtitleCueVttRow, PgSubtitleRow, PgSubtitleTrackAssStyleRow, PgSubtitleTrackIndexErrorRow,
PgSubtitleTrackLrcMetadataRow, PgSubtitleTrackRow, PgSubtitleTrackVttRegionRow,
PgSubtitleTrackVttStyleRow,
};
#[cfg(feature = "video")]
pub use video::{
PgKeyframeActionRow, PgKeyframeBarcodeRow, PgKeyframeBodyPose3DJointRow, PgKeyframeBodyPose3DRow,
PgKeyframeBodyPoseJointRow, PgKeyframeBodyPoseRow, PgKeyframeClassificationRow,
PgKeyframeColorRow, PgKeyframeDocumentSegmentRow, PgKeyframeFaceLandmarkPointRow,
PgKeyframeFaceLandmarkRegionRow, PgKeyframeFaceLandmarksRow, PgKeyframeFaceRow,
PgKeyframeHandPoseRow, PgKeyframeMaskRow, PgKeyframeObjectRow, PgKeyframeRow, PgKeyframeRows,
PgKeyframeSaliencyRow, PgKeyframeSubjectRow, PgKeyframeTextDetectionRow, PgKeyframeVlmLabelRow,
PgSceneRow, PgVideoRow, PgVideoTrackIndexErrorRow, PgVideoTrackRow,
};
pub const SCHEMA_SQL: &str = include_str!("schema.sql");
pub const MIGRATION_0001_INIT: &str = include_str!("migrations/0001_init.sql");