1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-19 02:16:11 -04:00
v2fly/app/web/web.go
Darien Raymond 943d43040b
name confict
2016-12-07 14:35:10 +01:00

16 lines
161 B
Go

package web
import (
"v2ray.com/core/app"
"v2ray.com/core/common"
)
const (
APP_ID = app.ID(8)
)
type WebServer interface {
common.Releasable
Handle()
}