haunt/main.go

17 lines
319 B
Go
Raw Permalink Normal View History

2023-03-04 22:22:03 +00:00
package main
import "github.com/abs3ntdev/haunt/cmd"
func main() {
2023-03-06 18:17:28 +00:00
// names := haunt.AssetNames()
// fmt.Println("Assets in bindata:")
// fmt.Println(names)
//
// wd := "www"
// for i, v := range names {
// fmt.Printf("Restoring asset [%v] [%s]\n", i, v)
// haunt.RestoreAsset(wd, v)
// }
2023-03-04 22:22:03 +00:00
cmd.Execute()
}