Stream would stream the path via an instance of io.ReadCloser. Close must be called at the end to release resources appropriately.
(path string)
| 103 | // Stream would stream the path via an instance of io.ReadCloser. Close must be called at the |
| 104 | // end to release resources appropriately. |
| 105 | Stream(path string) (io.ReadCloser, error) |
| 106 | } |
| 107 | |
| 108 | // NewUriHandler parses the requested URI and finds the corresponding UriHandler. |