package bond import ( "net/http" ) func Static(pth string) Handler { return Wrap{http.FileServer(http.Dir(pth))} }