An enpoint that serves a filesystem location
| 51 | |
| 52 | // An enpoint that serves a filesystem location |
| 53 | type filesystemEndpoint struct { |
| 54 | Root string |
| 55 | notFoundRoutes []routespec.RouteSpec |
| 56 | } |
| 57 | |
| 58 | func newFilesystemEndpoint(path string, notfound []string) (*filesystemEndpoint, error) { |
| 59 | rparts := []routespec.RouteSpec{} |
nothing calls this directly
no outgoing calls
no test coverage detected