(p string)
| 1883 | } |
| 1884 | |
| 1885 | func cleanPath(p string) string { |
| 1886 | p = path.Clean(p) |
| 1887 | if p == "." || p == "/" { |
| 1888 | p = "" |
| 1889 | } |
| 1890 | |
| 1891 | return p |
| 1892 | } |
| 1893 | |
| 1894 | // UserInfo returns info about the connected user |
| 1895 | func (f *Fs) UserInfo(ctx context.Context) (map[string]string, error) { |
no outgoing calls
no test coverage detected
searching dependent graphs…