1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 11:35:23 +00:00
v2fly/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)
}