1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00

format code

This commit is contained in:
V2Ray 2015-09-06 22:10:42 +02:00
parent 530f749aa3
commit a45498da45
6 changed files with 66 additions and 69 deletions

View File

@ -19,7 +19,6 @@ type JsonVConfig struct {
}
type JsonVConfigUnmarshaller struct {
}
func StringToVUser(id string) (u core.VUser, err error) {

View File

@ -5,15 +5,13 @@ import (
)
type VMessHandler struct {
}
func (*VMessHandler) Listen(port uint8) error {
listener, err := net.Listen("tcp", ":" + string(port))
listener, err := net.Listen("tcp", ":"+string(port))
if err != nil {
return err
}
return nil
}