chiark / gitweb /
reorg source
[hippotat.git] / server / server.rs
index 102e5e761504a37d9b6a44d636135f9ea69e2d70..c15db88a81e5dd9b7b22444c79284ad7da9f5976 100644 (file)
@@ -4,12 +4,12 @@
 
 use hippotat::prelude::*;
 
-mod slink;
+mod suser;
 mod slocal;
 mod sweb;
 
 pub use sweb::{WebRequest, WebResponse};
-pub use slink::Client;
+pub use suser::Client;
 
 #[derive(StructOpt,Debug)]
 pub struct Opts {
@@ -117,7 +117,7 @@ async fn main() {
       let global_ = global.clone();
       let ic_ = ic.clone();
       tasks.push((tokio::spawn(async move {
-        slink::run(global_, ic_, web_recv, route_recv)
+        suser::run(global_, ic_, web_recv, route_recv)
           .await.void_unwrap_err()
       }), format!("client {}", &ic)));
     }