spray/pkg/templates.go

14 lines
223 B
Go
Raw Normal View History

2022-10-28 00:46:54 +08:00
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{}
}