webui: init service code

develop
Katharina Fey 3 years ago
parent c58e8fa6a8
commit 4c79889201
Signed by: kookie
GPG Key ID: F972AEEA2887D547
  1. 698
      Cargo.lock
  2. 3
      Cargo.toml
  3. 9
      services/webui/Cargo.toml
  4. 7
      services/webui/src/lib.rs

698
Cargo.lock generated

File diff suppressed because it is too large Load Diff

@ -36,8 +36,9 @@ members = [
"netmods/netmod-udp",
"netmods/netmod-wd",
# Set of services in qaul
# Set of services in irdest
"services/ping",
"services/webui",
# End-user applications
"clients/hubd",

@ -0,0 +1,9 @@
[package]
name = "webui"
description = "A service to host and serve a cross-platform web UI"
version = "0.1.0"
authors = ["Katharina Fey <kookie@spacekookie.de>"]
edition = "2018"
[dependencies]
tide = "*"

@ -0,0 +1,7 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}
Loading…
Cancel
Save