1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-04-23 05:59:11 -04:00

accounts in protobuf

This commit is contained in:
Darien Raymond
2016-09-18 00:41:21 +02:00
parent 3423adaea4
commit d08cba000f
40 changed files with 790 additions and 224 deletions

View File

@@ -3,3 +3,9 @@ package protocol
type Account interface {
Equals(Account) bool
}
type AsAccount interface {
AsAccount() (Account, error)
}
type NewAccountFactory func() AsAccount