mirror of
				https://github.com/TeaOSLab/EdgeNode.git
				synced 2025-11-04 07:40:56 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			553 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			553 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package iplibrary
 | 
						|
 | 
						|
import (
 | 
						|
	"encoding/json"
 | 
						|
	"github.com/iwind/TeaGo/maps"
 | 
						|
	"net/http"
 | 
						|
)
 | 
						|
 | 
						|
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
 | 
						|
}
 |