Allow to upload instruments

This commit is contained in:
Elias Projahn 2020-11-28 23:07:31 +01:00
parent 13910a664c
commit 9c255d0cfe
10 changed files with 611 additions and 181 deletions

View file

@ -35,6 +35,10 @@ async fn main() -> std::io::Result<()> {
.service(update_ensemble)
.service(delete_ensemble)
.service(get_ensembles)
.service(get_instrument)
.service(update_instrument)
.service(delete_instrument)
.service(get_instruments)
});
server.bind("127.0.0.1:8087")?.run().await