veilid/veilid-server/src/unix.rs

9 lines
227 B
Rust
Raw Normal View History

2022-01-15 23:50:56 +00:00
use crate::settings::Settings;
use clap::ArgMatches;
// use log::*;
2021-11-22 16:28:30 +00:00
2022-01-15 23:50:56 +00:00
pub fn run_daemon(_settings: Settings, _matches: ArgMatches) -> Result<(), String> {
2022-01-15 23:24:37 +00:00
eprintln!("Windows Service mode not implemented yet.");
2021-11-22 16:28:30 +00:00
Ok(())
}