|
2 | 2 |
|
3 | 3 | package dispatcher |
4 | 4 |
|
5 | | -//go:generate go run github.com/xtls/xray-core/v1/common/errors/errorgen |
| 5 | +//go:generate go run github.com/xtls/xray-core/common/errors/errorgen |
6 | 6 |
|
7 | 7 | import ( |
8 | 8 | "context" |
9 | 9 | "strings" |
10 | 10 | "sync" |
11 | 11 | "time" |
12 | 12 |
|
13 | | - "github.com/xtls/xray-core/v1/common" |
14 | | - "github.com/xtls/xray-core/v1/common/buf" |
15 | | - "github.com/xtls/xray-core/v1/common/log" |
16 | | - "github.com/xtls/xray-core/v1/common/net" |
17 | | - "github.com/xtls/xray-core/v1/common/protocol" |
18 | | - "github.com/xtls/xray-core/v1/common/session" |
19 | | - "github.com/xtls/xray-core/v1/core" |
20 | | - "github.com/xtls/xray-core/v1/features/outbound" |
21 | | - "github.com/xtls/xray-core/v1/features/policy" |
22 | | - "github.com/xtls/xray-core/v1/features/routing" |
23 | | - routing_session "github.com/xtls/xray-core/v1/features/routing/session" |
24 | | - "github.com/xtls/xray-core/v1/features/stats" |
25 | | - "github.com/xtls/xray-core/v1/transport" |
26 | | - "github.com/xtls/xray-core/v1/transport/pipe" |
| 13 | + "github.com/xtls/xray-core/common" |
| 14 | + "github.com/xtls/xray-core/common/buf" |
| 15 | + "github.com/xtls/xray-core/common/log" |
| 16 | + "github.com/xtls/xray-core/common/net" |
| 17 | + "github.com/xtls/xray-core/common/protocol" |
| 18 | + "github.com/xtls/xray-core/common/session" |
| 19 | + "github.com/xtls/xray-core/core" |
| 20 | + "github.com/xtls/xray-core/features/outbound" |
| 21 | + "github.com/xtls/xray-core/features/policy" |
| 22 | + "github.com/xtls/xray-core/features/routing" |
| 23 | + routing_session "github.com/xtls/xray-core/features/routing/session" |
| 24 | + "github.com/xtls/xray-core/features/stats" |
| 25 | + "github.com/xtls/xray-core/transport" |
| 26 | + "github.com/xtls/xray-core/transport/pipe" |
27 | 27 | ) |
28 | 28 |
|
29 | 29 | var ( |
|
0 commit comments