// ================================================================================ // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // You can delete these comments if you wish manually maintain this interface file. // ================================================================================ package service import ( "context" "jygit.jydev.jianyu360.cn/wangshan/user/internal/model/entity" ) type ( IUser interface { GetMsg(ctx context.Context, in *entity.MsgInfoInput) (out *entity.MsgInfoOutput) } ) var ( localUser IUser ) func User() IUser { if localUser == nil { panic("implement not found for interface IUser, forgot register?") } return localUser } func RegisterUser(i IUser) { localUser = i }