file.go 127 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 package utils import ( "os" "path/filepath" ) func SelfPath() string { path, _ := filepath.Abs(os.Args[0]) return path }