swap lcoal function

This commit is contained in:
Your Name 2018-08-24 13:09:05 +00:00
parent 8c24068b20
commit bf203aa38c
1 changed files with 1 additions and 1 deletions

View File

@ -715,7 +715,7 @@ type fileHandler struct {
// As a special case, the returned file server redirects any request
// ending in "/index.html" to the same path, without the final
// "index.html".
func FileServer(root http.FileSystem) http.Handler {
func FileServer(root FileSystem) http.Handler {
return &fileHandler{root}
}