Merge branch 'dev' into x/gorm

pull/351/head
Michael Li 1 year ago
commit a8180e4145
No known key found for this signature in database

@ -12,6 +12,19 @@ import (
"github.com/rocboss/paopao-ce/internal/model/web" "github.com/rocboss/paopao-ce/internal/model/web"
) )
type _binding_ interface {
Bind(*gin.Context) mir.Error
}
type _render_ interface {
Render(*gin.Context)
}
type _default_ interface {
Bind(*gin.Context, any) mir.Error
Render(*gin.Context, any, mir.Error)
}
type Admin interface { type Admin interface {
_default_ _default_

@ -12,19 +12,6 @@ import (
"github.com/rocboss/paopao-ce/internal/model/web" "github.com/rocboss/paopao-ce/internal/model/web"
) )
type _binding_ interface {
Bind(*gin.Context) mir.Error
}
type _render_ interface {
Render(*gin.Context)
}
type _default_ interface {
Bind(*gin.Context, any) mir.Error
Render(*gin.Context, any, mir.Error)
}
type AlipayPriv interface { type AlipayPriv interface {
_default_ _default_

@ -6,7 +6,7 @@ require (
github.com/Masterminds/semver/v3 v3.2.1 github.com/Masterminds/semver/v3 v3.2.1
github.com/afocus/captcha v0.0.0-20191010092841-4bd1f21c8868 github.com/afocus/captcha v0.0.0-20191010092841-4bd1f21c8868
github.com/alimy/cfg v0.3.0 github.com/alimy/cfg v0.3.0
github.com/alimy/mir/v4 v4.0.0-alpha.6 github.com/alimy/mir/v4 v4.0.0-alpha.7
github.com/aliyun/aliyun-oss-go-sdk v2.2.7+incompatible github.com/aliyun/aliyun-oss-go-sdk v2.2.7+incompatible
github.com/allegro/bigcache/v3 v3.1.0 github.com/allegro/bigcache/v3 v3.1.0
github.com/bytedance/sonic v1.9.1 github.com/bytedance/sonic v1.9.1

@ -125,8 +125,8 @@ github.com/alexflint/go-filemutex v0.0.0-20171022225611-72bdc8eae2ae/go.mod h1:C
github.com/alexflint/go-filemutex v1.1.0/go.mod h1:7P4iRhttt/nUvUOrYIhcpMzv2G6CY9UnI16Z+UJqRyk= github.com/alexflint/go-filemutex v1.1.0/go.mod h1:7P4iRhttt/nUvUOrYIhcpMzv2G6CY9UnI16Z+UJqRyk=
github.com/alimy/cfg v0.3.0 h1:9xgA0QWVCPSq9fFNRcYahVCAX22IL9ts2wrTQPfAStY= github.com/alimy/cfg v0.3.0 h1:9xgA0QWVCPSq9fFNRcYahVCAX22IL9ts2wrTQPfAStY=
github.com/alimy/cfg v0.3.0/go.mod h1:rOxbasTH2srl6StAjNF5Vyi8bfrdkl3fLGmOYtSw81c= github.com/alimy/cfg v0.3.0/go.mod h1:rOxbasTH2srl6StAjNF5Vyi8bfrdkl3fLGmOYtSw81c=
github.com/alimy/mir/v4 v4.0.0-alpha.6 h1:bCFZ0HwFlT3Gsk5TgRGRyI4Xc/BCMR2VvuNghnTTHC0= github.com/alimy/mir/v4 v4.0.0-alpha.7 h1:ysAg2U3MDLj9QMB6lDqqGaz8uWwlq/ndDs9gmFceZWw=
github.com/alimy/mir/v4 v4.0.0-alpha.6/go.mod h1:d58dBvw2KImcVbAUANrciEV/of0arMNsI9c/5UNCMMc= github.com/alimy/mir/v4 v4.0.0-alpha.7/go.mod h1:d58dBvw2KImcVbAUANrciEV/of0arMNsI9c/5UNCMMc=
github.com/aliyun/aliyun-oss-go-sdk v2.2.7+incompatible h1:KpbJFXwhVeuxNtBJ74MCGbIoaBok2uZvkD7QXp2+Wis= github.com/aliyun/aliyun-oss-go-sdk v2.2.7+incompatible h1:KpbJFXwhVeuxNtBJ74MCGbIoaBok2uZvkD7QXp2+Wis=
github.com/aliyun/aliyun-oss-go-sdk v2.2.7+incompatible/go.mod h1:T/Aws4fEfogEE9v+HPhhw+CntffsBHJ8nXQCwKr0/g8= github.com/aliyun/aliyun-oss-go-sdk v2.2.7+incompatible/go.mod h1:T/Aws4fEfogEE9v+HPhhw+CntffsBHJ8nXQCwKr0/g8=
github.com/allegro/bigcache/v3 v3.1.0 h1:H2Vp8VOvxcrB91o86fUSVJFqeuz8kpyyB02eH3bSzwk= github.com/allegro/bigcache/v3 v3.1.0 h1:H2Vp8VOvxcrB91o86fUSVJFqeuz8kpyyB02eH3bSzwk=

@ -7,7 +7,7 @@ import (
) )
func init() { func init() {
AddEntry(new(Admin)) Entry[Admin]()
} }
// Admin 运维相关服务 // Admin 运维相关服务

@ -7,7 +7,7 @@ import (
) )
func init() { func init() {
AddEntry(new(Core)) Entry[Core]()
} }
// Core 核心服务,需要授权访问 // Core 核心服务,需要授权访问

@ -7,7 +7,7 @@ import (
) )
func init() { func init() {
AddEntry(new(Followship)) Entry[Followship]()
} }
// Followship 关注者模式 服务 // Followship 关注者模式 服务

@ -7,7 +7,7 @@ import (
) )
func init() { func init() {
AddEntry(new(Friendship)) Entry[Friendship]()
} }
// Friendship 好友模式 服务 // Friendship 好友模式 服务

@ -7,7 +7,7 @@ import (
) )
func init() { func init() {
AddEntry(new(Loose)) Entry[Loose]()
} }
// Loose 宽松授权的服务 // Loose 宽松授权的服务

@ -7,7 +7,7 @@ import (
) )
func init() { func init() {
AddEntry(new(Priv)) Entry[Priv]()
} }
// Priv 私有授权的服务 // Priv 私有授权的服务

@ -7,7 +7,7 @@ import (
) )
func init() { func init() {
AddEntry(new(Pub)) Entry[Pub]()
} }
// Pub 不用授权的公开服务 // Pub 不用授权的公开服务

Loading…
Cancel
Save