1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-23 04:00:32 -04:00
v2fly/app/web/web.go
2016-12-04 09:10:47 +01:00

16 lines
158 B
Go

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