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