Add API Version check endpoint

This commit is contained in:
Anthony Oteri
2023-09-14 10:03:10 -04:00
parent 00a1ad87e7
commit 9445c9e817
5 changed files with 117 additions and 1 deletions
+1
View File
@@ -87,6 +87,7 @@ async fn main() -> Result<(), DredgeError> {
match args.command {
Commands::Catalog => commands::catalog::handler(&config).await?,
Commands::Check => commands::version::handler(&config).await?,
}
Ok(())