go项目脚手架
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sorbet/internal/services/feature/controller/feature_config_controller.go

17 lines
375 B

1 year ago
package controller
import (
"github.com/labstack/echo/v4"
"sorbet/internal/entities"
"sorbet/internal/services/feature/request"
"sorbet/pkg/app"
1 year ago
)
type FeatureConfigController struct {
app.Controller[entities.FeatureConfig, request.FeatureConfigUpsertRequest]
1 year ago
}
func (f *FeatureConfigController) InitRoutes(r *echo.Group) {
f.RegisterRoutes("/feature/configs", r)
}