Load loads the given resource into memory.
(url string, data io.Reader)
| 11 | type FileLoader interface { |
| 12 | // Load loads the given resource into memory. |
| 13 | Load(url string, data io.Reader) error |
| 14 | |
| 15 | // Unload releases the given resource from memory. |
| 16 | Unload(url string) error |
no outgoing calls