18 lines
294 B
Go
18 lines
294 B
Go
package user
|
|
|
|
import (
|
|
"context"
|
|
"go_dreamfactory/comm"
|
|
"go_dreamfactory/modules"
|
|
"go_dreamfactory/pb"
|
|
)
|
|
|
|
type UserComp struct {
|
|
modules.MComp_GateComp
|
|
}
|
|
|
|
//创角
|
|
func (this *UserComp) CreateUser(ctx context.Context, session comm.IUserSession, req *pb.UserLoginReq) error {
|
|
return nil
|
|
}
|