feat: implement new structure

This commit is contained in:
2025-12-29 09:30:49 +08:00
parent 503b15aab7
commit ad52371028
116 changed files with 17579 additions and 1213 deletions

View File

@@ -0,0 +1,13 @@
package http
import (
v1 "quyun/v2/app/http/v1"
"go.ipao.vip/atom/container"
)
func Providers() container.Providers {
return container.Providers{
{Provider: v1.Provide},
}
}