12 lines
196 B
Go
12 lines
196 B
Go
![]() |
package model
|
||
|
|
||
|
import "SciencesServer/app/common/model"
|
||
|
|
||
|
type UserIdentity struct {
|
||
|
*model.UserIdentity
|
||
|
}
|
||
|
|
||
|
func NewUserIdentity() *UserIdentity {
|
||
|
return &UserIdentity{model.NewUserIdentity()}
|
||
|
}
|