This commit is contained in:
2026-02-05 21:35:42 +08:00
parent c62b4c04ec
commit c8315469b2
22 changed files with 511 additions and 522 deletions

View File

@@ -0,0 +1,11 @@
package forum
import (
"TrangleAgent/api/forum"
)
type ControllerV1 struct{}
func NewV1() forum.IForumV1 {
return &ControllerV1{}
}