(filename string)
| 127 | } |
| 128 | |
| 129 | func fileExists(filename string) bool { |
| 130 | _, err := os.Stat(filename) |
| 131 | return err == nil || os.IsExist(err) |
| 132 | } |
| 133 | |
| 134 | func getCurrentDirectory() string { |
| 135 | return filepath.Clean(filepath.Dir(os.Args[0])) + "/" |
no outgoing calls
no test coverage detected