mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-22 10:08:15 -05:00
14 lines
239 B
Go
14 lines
239 B
Go
package outbound_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "v2ray.com/core/app/proxyman/outbound"
|
|
"v2ray.com/core/features/outbound"
|
|
)
|
|
|
|
func TestInterfaces(t *testing.T) {
|
|
_ = (outbound.Handler)(new(Handler))
|
|
_ = (outbound.Manager)(new(Manager))
|
|
}
|