mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-22 18:17:52 -05:00
22 lines
487 B
Go
22 lines
487 B
Go
package mocks
|
|
|
|
import (
|
|
"github.com/v2ray/v2ray-core/common/uuid"
|
|
"github.com/v2ray/v2ray-core/proxy/vmess"
|
|
"github.com/v2ray/v2ray-core/proxy/vmess/protocol"
|
|
)
|
|
|
|
type StaticUserSet struct {
|
|
}
|
|
|
|
func (us *StaticUserSet) AddUser(user *vmess.User) error {
|
|
return nil
|
|
}
|
|
|
|
func (us *StaticUserSet) GetUser(userhash []byte) (*vmess.User, protocol.Timestamp, bool) {
|
|
id, _ := uuid.ParseString("703e9102-eb57-499c-8b59-faf4f371bb21")
|
|
return &vmess.User{
|
|
ID: vmess.NewID(id),
|
|
}, 0, true
|
|
}
|