Fix minor bugs

This commit is contained in:
problematicconsumer
2023-09-22 23:25:38 +03:30
parent b8fe76515c
commit 75e342b6ba
4 changed files with 9 additions and 8 deletions

View File

@@ -9,8 +9,8 @@ import (
"github.com/sagernet/sing-box/option"
)
func Parse(path string) error {
return shared.ParseConfig(path)
func Parse(path string, tempPath string, debug bool) error {
return shared.ParseConfig(path, tempPath, debug)
}
func BuildConfig(path string, configOptionsJson string) (string, error) {