1use entrust_agent::server; 2use std::thread; 3use std::time::Duration; 4 5fn main() { 6 thread::spawn(|| server::run(None)); 7 thread::sleep(Duration::from_secs(600)); 8}