utils: remove dead package

parent 674826b5
package utils
import "os"
func FileExists(path string) bool {
_, err := os.Stat(path)
return err == nil
}
func GetEditor() string {
if editor := os.Getenv("EDITOR"); editor != "" {
return editor
}
return "micro"
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment