fileHandler is used for 'file:' URI scheme.
| 146 | |
| 147 | // fileHandler is used for 'file:' URI scheme. |
| 148 | type fileHandler struct { |
| 149 | rootDir string |
| 150 | prefix string |
| 151 | } |
| 152 | |
| 153 | func NewFileHandler(uri *url.URL) *fileHandler { |
| 154 | h := &fileHandler{} |
nothing calls this directly
no outgoing calls
no test coverage detected