Adjustments following kind discussion with LunarJetman on IRC

This commit is contained in:
2020-03-22 17:19:26 +00:00
parent ba7c06e5fd
commit 3cb32b8962
9 changed files with 73 additions and 62 deletions

View File

@@ -4,7 +4,7 @@ import (
"log"
"os"
"code.ur.gs/lupine/ordoor/internal/wh40k"
"code.ur.gs/lupine/ordoor/internal/ordoor"
)
func main() {
@@ -13,7 +13,7 @@ func main() {
configFile = os.Args[1]
}
if err := wh40k.Run(configFile); err != nil {
if err := ordoor.Run(configFile); err != nil {
log.Fatalf(err.Error())
}