yl 6da966fe0c fix: 修复mycourse接口Controller绑定问题
- 重新生成API接口定义文件
- 修复Controller导入和返回类型问题
- 确保mycourse接口能正确注册到路由
- 解决返回HTML而非JSON的问题
2025-07-29 13:37:33 +08:00

16 lines
804 B
Go
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// =================================================================================
// This is auto-generated by GoFrame CLI tool only once. Fill this file as you wish.
// =================================================================================
package mycourse
import (
"hotgo/api/api/mycourse"
)
type ControllerV1 struct{}
func NewV1() mycourse.IMyCourseV1 {
return &ControllerV1{}
}