Files
EdgeNode/internal/iplibrary/action_base.go
2021-02-26 16:33:58 +08:00

32 lines
546 B
Go

package iplibrary
import (
"encoding/json"
"github.com/iwind/TeaGo/maps"
"net/http"
)
type BaseAction struct {
}
func (this *BaseAction) Close() error {
return nil
}
// 处理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
}