mirror of
https://github.com/KaySar12/NextZen-UserService.git
synced 2025-03-16 07:35:35 +07:00
10 lines
194 B
Go
10 lines
194 B
Go
|
package v2
|
||
|
|
||
|
import codegen "github.com/IceWhaleTech/CasaOS-UserService/codegen/user_service"
|
||
|
|
||
|
type UserService struct{}
|
||
|
|
||
|
func NewUserService() codegen.ServerInterface {
|
||
|
return &UserService{}
|
||
|
}
|