v2ray-core/common/protocol/account.go

12 lines
168 B
Go
Raw Normal View History

2016-05-07 18:26:03 +00:00
package protocol
type Account interface {
2016-07-24 21:22:46 +00:00
Equals(Account) bool
2016-05-07 18:26:03 +00:00
}
2016-09-17 22:41:21 +00:00
type AsAccount interface {
AsAccount() (Account, error)
}
type NewAccountFactory func() AsAccount