updated some documentation

This commit is contained in:
2023-03-06 21:51:37 +01:00
parent fa3d7cfdc4
commit 33f9fb2764
3 changed files with 3 additions and 6 deletions

View File

@@ -20,7 +20,7 @@ impl CommandRegistry {
let registry = self;
registry.register("/build".to_string(), Box::new(Build::new()), true);
registry.register("/health".to_string(), Box::new(Health::new()), true);
registry.register("/reveal".to_string(), Box::new(Reveal::new()), true);
registry.register("/install-reveal".to_string(), Box::new(Reveal::new()), true);
}