utils: remove the config.go file

pull/7/head
oscar 2022-09-21 17:43:21 +12:00
parent 8463725b9c
commit a115970e7e
1 changed files with 0 additions and 24 deletions

View File

@ -1,24 +0,0 @@
package utils
import (
"errors"
"fmt"
"os"
)
func GetConfigFile(name string) (*os.File, error) {
_, err := os.Stat(name)
if err != nil {
if errors.Is(err, os.ErrNotExist) {
//create file
file, err := os.Create(name)
if err != nil {
return nil, fmt.Errorf("fail to create config file: %w", err)
}
return file, err
} else {
return nil, err
}
}
return os.OpenFile(name, os.O_RDWR, 0644)
}