9 lines
89 B
Go
9 lines
89 B
Go
package user
|
|
|
|
type Service interface {
|
|
// 注册
|
|
Registry()
|
|
// 注销
|
|
UnRegistry()
|
|
}
|