v2ray-core/app/web/web.go

16 lines
161 B
Go
Raw Normal View History

2016-12-04 08:10:47 +00:00
package web
import (
"v2ray.com/core/app"
"v2ray.com/core/common"
)
const (
APP_ID = app.ID(8)
)
2016-12-07 13:35:10 +00:00
type WebServer interface {
2016-12-04 08:10:47 +00:00
common.Releasable
Handle()
}