move default_motd func to a better place
This commit is contained in:
parent
a315baa258
commit
f5c67c64d7
|
@ -11,6 +11,10 @@ pub struct Config {
|
||||||
pub logger: LoggerConfig,
|
pub logger: LoggerConfig,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn default_motd() -> String {
|
||||||
|
"breeze file server (v%version%) - currently hosting %uplcount% files".to_string()
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Deserialize)]
|
#[derive(Deserialize)]
|
||||||
pub struct EngineConfig {
|
pub struct EngineConfig {
|
||||||
/// The url that the instance of breeze is meant to be accessed from.
|
/// The url that the instance of breeze is meant to be accessed from.
|
||||||
|
@ -56,10 +60,6 @@ pub struct CacheConfig {
|
||||||
pub mem_capacity: usize,
|
pub mem_capacity: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
fn default_motd() -> String {
|
|
||||||
"breeze file server (v%version%) - currently hosting %uplcount% files".to_string()
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Deserialize)]
|
#[derive(Deserialize)]
|
||||||
pub struct HttpConfig {
|
pub struct HttpConfig {
|
||||||
pub listen_on: String,
|
pub listen_on: String,
|
||||||
|
|
Loading…
Reference in New Issue