mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-05 00:45:12 +08:00
20 lines
328 B
Go
20 lines
328 B
Go
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
package js
|
|
|
|
import "net/http"
|
|
|
|
type RequestInterface interface {
|
|
// JSRequest 请求
|
|
JSRequest() *http.Request
|
|
|
|
// JSWriter 响应
|
|
JSWriter() http.ResponseWriter
|
|
|
|
// JSStop 中止请求
|
|
JSStop()
|
|
|
|
// JSLog 打印日志
|
|
JSLog(msg ...interface{})
|
|
}
|