add key endpoint

This commit is contained in:
Quentin de Quelen
2020-04-07 19:10:32 +02:00
committed by qdequele
parent 540308dc63
commit 0aa16dd3b1
3 changed files with 10 additions and 11 deletions

View File

@ -63,6 +63,7 @@ async fn main() -> Result<(), MainError> {
.service(routes::document::update_documents)
.service(routes::document::delete_documents)
.service(routes::document::clear_all_documents)
.service(routes::key::list)
.service(routes::health::get_health)
.service(routes::health::change_healthyness)
)