mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-18 10:26:01 -05:00
12 lines
168 B
Go
12 lines
168 B
Go
package protocol
|
|
|
|
type Account interface {
|
|
Equals(Account) bool
|
|
}
|
|
|
|
type AsAccount interface {
|
|
AsAccount() (Account, error)
|
|
}
|
|
|
|
type NewAccountFactory func() AsAccount
|