mirror of
https://github.com/Baipyrus/ProxySwitcher.git
synced 2024-12-26 04:31:45 +00:00
using parameter to determine config name/path
This commit is contained in:
parent
c55aec82ce
commit
15e81cf2ea
@ -6,7 +6,7 @@ import (
|
||||
"os"
|
||||
)
|
||||
|
||||
func ReadConfigs() ([]*Config, error) {
|
||||
func ReadConfigs(name string) ([]*Config, error) {
|
||||
file, err := os.Open("configs.json")
|
||||
|
||||
if err != nil {
|
||||
@ -25,8 +25,8 @@ func ReadConfigs() ([]*Config, error) {
|
||||
return config, nil
|
||||
}
|
||||
|
||||
func SaveConfig(config Config) error {
|
||||
configs, _ := ReadConfigs()
|
||||
func SaveConfig(name string, config Config) error {
|
||||
configs, _ := ReadConfigs(name)
|
||||
configs = append(configs, &config)
|
||||
|
||||
data, err := json.Marshal(configs)
|
||||
@ -34,6 +34,6 @@ func SaveConfig(config Config) error {
|
||||
return err
|
||||
}
|
||||
|
||||
err = os.WriteFile("configs.json", data, 0666)
|
||||
err = os.WriteFile(name, data, 0666)
|
||||
return err
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user