2022-10-28 00:46:54 +08:00
|
|
|
package pkg
|
2022-10-28 00:01:05 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/chainreactors/files"
|
|
|
|
"github.com/chainreactors/parsers"
|
|
|
|
)
|
|
|
|
|
|
|
|
func LoadConfig(typ string) []byte {
|
|
|
|
if typ == "http" {
|
|
|
|
return files.UnFlate(parsers.Base64Decode(""))
|
|
|
|
}
|
|
|
|
return []byte{}
|
|
|
|
}
|