feat(http): handle html5 routing

ref #5
This commit is contained in:
2023-03-01 14:39:36 +01:00
parent 8680e139e7
commit 3136d71032
4 changed files with 62 additions and 6 deletions

View File

@ -99,3 +99,5 @@ func (f *File) Readdir(count int) ([]os.FileInfo, error) {
func (f *File) Stat() (os.FileInfo, error) {
return f.fi, nil
}
var _ http.FileSystem = &FileSystem{}