Files
xk-of-api/internal/controller/lead/lead.go

10 lines
187 B
Go
Raw Normal View History

2026-07-18 05:58:41 +08:00
package lead
// ControllerV1 是官网线索控制器。
type ControllerV1 struct{}
// NewV1 创建官网线索控制器实例。
func NewV1() *ControllerV1 {
return &ControllerV1{}
}