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