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