Files
cms-server/service/service_auth/service.go
Asai Neko 89e7f1a41a
Some checks failed
Backend Check Build (NixCN CMS) TeamCity build failed
Client CMS Check Build (NixCN CMS) TeamCity build finished
WIP: Restructing auth api and service
Signed-off-by: Asai Neko <sugar@sne.moe>
2026-01-28 18:19:24 +08:00

13 lines
229 B
Go

package service_auth
type AuthService interface {
Exchange(*ExchangePayload) *ExchangeResult
Magic(*MagicPayload) *MagicResult
}
type AuthServiceImpl struct{}
func NewAuthService() AuthService {
return &AuthServiceImpl{}
}