Files
v2ray-core/common/protocol/account.go
Darien Raymond 2f550186ac comments
2016-12-07 13:12:42 +01:00

12 lines
240 B
Go

package protocol
// Account is an user identity used for authentication.
type Account interface {
Equals(Account) bool
}
// AsAccount is an object can be converted into account.
type AsAccount interface {
AsAccount() (Account, error)
}