github.com/scottcagno/storage@v1.8.0/pkg/web/errors.go (about) 1 package web 2 3 import "errors" 4 5 var ( 6 ErrBadStaticFilepath = errors.New("bad static filepath") 7 ErrBadTemplateFilepath = errors.New("bad template filepath") 8 ErrBadTemplateSuffix = errors.New("bad template suffix") 9 )