adjustment

This commit is contained in:
mr
2025-03-28 08:49:39 +01:00
parent 0781421156
commit af6c295190
7 changed files with 16 additions and 42 deletions

View File

@@ -15,7 +15,10 @@ type VersionController struct {
// @Success 200
// @router / [get]
func (c *VersionController) GetAll() {
c.Data["json"] = map[string]string{"version": "1"}
c.Data["json"] = map[string]string{
"service": "oc-workspace",
"version": "1",
}
c.ServeJSON()
}