1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-12-30 14:05:26 -05:00

rename VMessAccount to vmess.Account

This commit is contained in:
v2ray
2016-07-25 17:36:24 +02:00
parent 2049759640
commit 2034d54bab
17 changed files with 288 additions and 274 deletions

View File

@@ -13,11 +13,10 @@ type User struct {
Email string
}
func NewUser(account Account, level UserLevel, email string) *User {
func NewUser(level UserLevel, email string) *User {
return &User{
Account: account,
Level: level,
Email: email,
Level: level,
Email: email,
}
}