1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00
Craig Peterson 42ef9f4b9e moving a bunch of packages under pkg (#124)
* moving a bunch of packages under pkg

* fix gen

* fix tst

* oops

* fix test fo real

* parse mx/a
2017-05-25 14:25:39 -04:00

18 lines
280 B
Go

package main
import (
"github.com/mjibson/esc/embed"
)
func main() {
conf := &embed.Config{
ModTime: "0",
OutputFile: "pkg/js/static.go",
Package: "js",
Prefix: "pkg/js",
Private: true,
Files: []string{`pkg/js/helpers.js`},
}
embed.Run(conf)
}