You've already forked v2ray-core
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
|