11 lines
147 B
Go
11 lines
147 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gobuffalo/packr/v2"
|
|
)
|
|
|
|
func main() {
|
|
packr.New("static", "./static")
|
|
packr.New("templates", "./templates")
|
|
}
|