feat: function CRUD operation is ready

This commit is contained in:
RockYang
2023-12-24 22:12:12 +08:00
parent 8addba8203
commit 3991f4daec
9 changed files with 71 additions and 30 deletions

View File

@@ -355,6 +355,7 @@ func main() {
group.POST("set", h.Set)
group.GET("list", h.List)
group.GET("remove", h.Remove)
group.GET("token", h.GenToken)
}),
fx.Provide(handler.NewTestHandler),