Add version flag to display current version

This commit is contained in:
2026-03-04 17:52:11 +01:00
parent e933219b94
commit f10c0b03bf
2 changed files with 10 additions and 7 deletions

View File

@@ -6,7 +6,8 @@ import (
)
func main() {
c := config.LoadConfig()
applicationVersion := "0.0.0"
c := config.LoadConfig(applicationVersion)
r := setup.Setup(&c)
r.Run(":" + c.Port)
}