Browse Source

domain: add handle search none

pull/18/head
Sun 4 years ago
parent
commit
bf7717d3d3
  1. 3
      src/apps/domain/layer.rs
  2. 2
      src/apps/domain/models.rs

3
src/apps/domain/layer.rs

@ -41,7 +41,8 @@ pub(crate) async fn handle( @@ -41,7 +41,8 @@ pub(crate) async fn handle(
println!("------ DEBUG DOMAIN SERVICE IS OK");
}
ServerEvent::Result(_name, _is_ok) => {}
ServerEvent::Info(_ugid, _uaddr, _uname, _ubio, _uavatar) => {}
ServerEvent::Info(_uname, _ugid, _uaddr, _ubio, _uavatar) => {}
ServerEvent::None(_name) => {}
ServerEvent::Response(_ugid, _uname, _is_ok) => {}
}
}

2
src/apps/domain/models.rs

@ -121,7 +121,7 @@ impl Provider { @@ -121,7 +121,7 @@ impl Provider {
}
}
/// Provider Model.
/// Name Model.
pub(crate) struct Name {
/// db auto-increment id.
id: i64,

Loading…
Cancel
Save