pub(super) mod add_associated_agents;
pub(super) mod add_properties;
pub(super) mod add_proposals;
pub(super) mod add_records;
pub(super) mod add_reported_values;
pub(super) mod add_reporters;
pub(super) mod get_property_with_data_type;
pub(super) mod get_record;
pub(super) mod get_reported_value_reporter_to_agent_metadata;
pub(super) mod list_associated_agents;
pub(super) mod list_properties_with_data_type;
pub(super) mod list_proposals;
pub(super) mod list_records;
pub(super) mod list_reported_value_reporter_to_agent_metadata;
pub(super) mod list_reporters;
pub(super) struct TrackAndTraceStoreOperations<'a, C> {
conn: &'a C,
}
impl<'a, C> TrackAndTraceStoreOperations<'a, C>
where
C: diesel::Connection,
{
pub fn new(conn: &'a C) -> Self {
TrackAndTraceStoreOperations { conn }
}
}