CreateDir creates a directory relative to the root path of the handler.
(path string)
| 84 | type UriHandler interface { |
| 85 | // CreateDir creates a directory relative to the root path of the handler. |
| 86 | CreateDir(path string) error |
| 87 | // CreateFile creates a file relative to the root path of the handler. It also makes the |
| 88 | // handler's descriptor to point to this file. |
| 89 | CreateFile(path string) (io.WriteCloser, error) |
no outgoing calls
no test coverage detected