summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2022-01-23 23:42:33 +0100
committerRené 'Necoro' Neumann <necoro@necoro.eu>2022-01-23 23:42:33 +0100
commit27791043e7e07ba33ffde6d180fcad9bfa992921 (patch)
tree9c8122b77da6f96604dc23c2bc9ea57f2b197227 /main.go
parentcd8e12750c96264232dcd04886130479e9010e83 (diff)
downloadengarde-importer-27791043e7e07ba33ffde6d180fcad9bfa992921.tar.gz
engarde-importer-27791043e7e07ba33ffde6d180fcad9bfa992921.tar.bz2
engarde-importer-27791043e7e07ba33ffde6d180fcad9bfa992921.zip
First step: write out verbatim template files
Diffstat (limited to 'main.go')
-rw-r--r--main.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.go b/main.go
index c6799f7..e2da4cd 100644
--- a/main.go
+++ b/main.go
@@ -7,6 +7,7 @@ import (
"log"
"os"
"strings"
+ "time"
"github.com/jszwec/csvutil"
)
@@ -159,7 +160,7 @@ func run() error {
return err
}
- return writeVerbatim()
+ return write(cfg)
}
func main() {