spray/pkg/templates.go
2022-10-28 00:46:54 +08:00

14 lines
223 B
Go

package pkg
import (
"github.com/chainreactors/files"
"github.com/chainreactors/parsers"
)
func LoadConfig(typ string) []byte {
if typ == "http" {
return files.UnFlate(parsers.Base64Decode(""))
}
return []byte{}
}