Files
EdgeNode/internal/iplibrary/action_base.go
GoEdgeLab c19be78e0d v1.4.1
2024-07-27 15:42:50 +08:00

33 lines
554 B
Go

package iplibrary
import (
"encoding/json"
"net/http"
"github.com/iwind/TeaGo/maps"
)
type BaseAction struct {
}
func (this *BaseAction) Close() error {
return nil
}
// DoHTTP 处理HTTP请求
func (this *BaseAction) DoHTTP(req *http.Request, resp http.ResponseWriter) (goNext bool, err error) {
return true, nil
}
func (this *BaseAction) convertParams(params maps.Map, ptr interface{}) error {
data, err := json.Marshal(params)
if err != nil {
return err
}
err = json.Unmarshal(data, ptr)
if err != nil {
return err
}
return nil
}