mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-05 09:30:26 +08:00
14 lines
244 B
Go
14 lines
244 B
Go
|
|
package waf
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/TeaOSLab/EdgeNode/internal/waf/requests"
|
||
|
|
"net/http"
|
||
|
|
)
|
||
|
|
|
||
|
|
type LogAction struct {
|
||
|
|
}
|
||
|
|
|
||
|
|
func (this *LogAction) Perform(waf *WAF, request *requests.Request, writer http.ResponseWriter) (allow bool) {
|
||
|
|
return true
|
||
|
|
}
|