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

16 lines
158 B
Go
Raw Normal View History

2016-12-04 03:10:47 -05:00
package web
import (
"v2ray.com/core/app"
"v2ray.com/core/common"
)
const (
APP_ID = app.ID(8)
)
type Server interface {
common.Releasable
Handle()
}