1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![warn(missing_debug_implementations)]

pub mod config;
pub mod controllers;
pub mod models;
pub mod services;
pub mod sources;
pub mod startup;

pub mod constants {
    pub mod routes {
        pub const HEALTH_CHECK_ROUTE: &str = "/healthcheck";
        pub const FETCH_ALL_ROUTE: &str = "/list/all";
        pub const FETCH_ALL_CSV_ROUTE: &str = "/list/all/mastodonCsv";
        pub const SEARCH_LIST_ROUTE: &str = "/list/search";
    }
}