()
| 273 | } |
| 274 | |
| 275 | func singBoxConfigPaths() []string { |
| 276 | home, _ := os.UserHomeDir() |
| 277 | if runtime.GOOS == "windows" { |
| 278 | app := os.Getenv("APPDATA") |
| 279 | return []string{ |
| 280 | filepath.Join(app, "sing-box", "config.json"), |
| 281 | } |
| 282 | } |
| 283 | return []string{ |
| 284 | "/etc/sing-box/config.json", |
| 285 | "/usr/local/etc/sing-box/config.json", |
| 286 | filepath.Join(home, ".config", "sing-box", "config.json"), |
| 287 | } |
| 288 | } |