fix: disable grpc core

This commit is contained in:
Hiddify
2024-03-17 19:20:24 +01:00
parent 84e5933d9d
commit 4bdcb7c4c9
2 changed files with 4 additions and 1 deletions

View File

@@ -11,7 +11,8 @@ import (
)
func Setup() error {
return config.StartGRPCServer(7078)
// return config.StartGRPCServer(7078)
return nil
}
func Parse(path string, tempPath string, debug bool) error {
@@ -44,6 +45,7 @@ func BuildConfig(path string, configOptionsJson string) (string, error) {
return "", err
}
}
return config.BuildConfigJson(*configOptions, options)
}