remotePath represents always UNIX path, its methods will use path package which is always using `/`
| 83 | // remotePath represents always UNIX path, its methods will use path |
| 84 | // package which is always using `/` |
| 85 | type remotePath struct { |
| 86 | file string |
| 87 | } |
| 88 | |
| 89 | func newRemotePath(fileName string) remotePath { |
| 90 | // we assume remote file is a linux container but we need to convert |
nothing calls this directly
no outgoing calls
no test coverage detected