dip/packr.go

12 lines
188 B
Go
Raw Normal View History

2020-01-27 21:16:08 +01:00
package main
2020-08-01 19:02:19 +02:00
import (
"github.com/gobuffalo/packr/v2"
_ "github.com/gobuffalo/packr/v2/packr2"
)
2020-01-27 21:16:08 +01:00
func run() {
packr.New("static", "./static")
packr.New("templates", "./templates")
}