1
2
3
4
5
6
7
use url::Url;

#[derive(Clone, Debug)]
pub struct Config {
    /// Строка подключения к БД
    pub connection_string: Url,
}