(prefix string, path string)
| 16 | } |
| 17 | |
| 18 | func (e *embedFileSystem) Exists(prefix string, path string) bool { |
| 19 | _, err := e.Open(path) |
| 20 | if err != nil { |
| 21 | return false |
| 22 | } |
| 23 | return true |
| 24 | } |
| 25 | |
| 26 | func (e *embedFileSystem) Open(name string) (http.File, error) { |
| 27 | if name == "/" { |