PersonalMain-Golang/internal/controller/hello/hello_new.go
2023-12-24 15:17:21 +08:00

16 lines
367 B
Go

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package hello
import (
"PersonalMain/api"
)
type ControllerV1 struct{}
func NewV1() api.IHelloV1 {
return &ControllerV1{}
}