Files
TrangleAgent/Backend/internal/controller/forum/forum.go

12 lines
137 B
Go
Raw Normal View History

2026-02-05 21:35:42 +08:00
package forum
import (
"TrangleAgent/api/forum"
)
type ControllerV1 struct{}
func NewV1() forum.IForumV1 {
return &ControllerV1{}
}