mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 09:17:55 -04:00
16 lines
161 B
Go
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()
|
|
}
|