1234567891011121314151617181920 |
- package ss
- import (
- "net/http"
- )
- func StaticDir(pth string) Handler {
- return Wrap{
- UseRelUrl: true,
- HttpHandler: http.FileServer(http.Dir(pth)),
- }
- }
- func StaticFile(pth string) Handler {
- return Wrap{
- HttpHandler: HttpHandlerFunc(func(w ResponseWriter, r *Request){
- http.ServeFile(w, r, pth)
- }),
- }
- }
|