Files
2021-09-29 16:25:56 +08:00

16 lines
182 B
Go

package account
type Other struct{}
type OtherHandle func() *Other
func (c *Other) BindMobile() {
}
func NewOther() OtherHandle {
return func() *Other {
return &Other{}
}
}