1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-21 09:36:34 -05:00

remove import path restriction

This commit is contained in:
v2ray 2016-08-19 17:05:15 +02:00
parent d83a0ce5d2
commit 2268f3d1bc
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
package io // import "github.com/v2ray/v2ray-core/common/io"
package io
import (
"io"

View File

@ -1,2 +1,2 @@
// Package net contains common network utilities.
package net // import "github.com/v2ray/v2ray-core/common/net"
package net

View File

@ -1,5 +1,5 @@
// Package proxy contains all proxies used by V2Ray.
package proxy // import "github.com/v2ray/v2ray-core/proxy"
package proxy
import (
"github.com/v2ray/v2ray-core/common/alloc"

View File

@ -3,7 +3,7 @@
// VMess contains both inbound and outbound connections. VMess inbound is usually used on servers
// together with 'freedom' to talk to final destination, while VMess outbound is usually used on
// clients with 'socks' for proxying.
package vmess // import "github.com/v2ray/v2ray-core/proxy/vmess"
package vmess
import (
"sync"