qrz/packr.go
Paul Lecuq 36c5d6f2ed
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is failing
large change on qrz
- web service with json support
- web page
- cron service to update database infos
2020-05-09 19:09:27 +02:00

12 lines
188 B
Go

package main
import (
"github.com/gobuffalo/packr/v2"
_ "github.com/gobuffalo/packr/v2/packr2"
)
func run() {
packr.New("static", "./static")
packr.New("templates", "./templates")
}