cat_gateway/service/common/
mod.rs

1
2
3
4
5
6
7
8
//! Define common and reusable api components here.
//! these components should be structured into their own sub modules.

pub(crate) mod auth;
pub(crate) mod objects;
pub(crate) mod responses;
pub(crate) mod tags;
pub(crate) mod types;