localPath represents a client-native path, which will differ based on the client OS, its methods will use path/filepath package which is OS dependant
| 36 | // on the client OS, its methods will use path/filepath package which |
| 37 | // is OS dependant |
| 38 | type localPath struct { |
| 39 | file string |
| 40 | } |
| 41 | |
| 42 | func newLocalPath(fileName string) localPath { |
| 43 | file := stripTrailingSlash(fileName) |
nothing calls this directly
no outgoing calls
no test coverage detected