statping/types/configs/methods.go

12 lines
271 B
Go
Raw Normal View History

2020-03-04 10:29:00 +00:00
package configs
2020-04-16 09:57:00 +00:00
import "github.com/statping/statping/utils"
2020-03-04 10:29:00 +00:00
// Save will initially create the config.yml file
func (d *DbConfig) Save(directory string) error {
2020-04-20 15:17:22 +00:00
if err := utils.Params.WriteConfigAs(directory + "/config.yml"); err != nil {
2020-04-16 09:57:00 +00:00
return nil
2020-03-04 10:29:00 +00:00
}
return nil
}