From 168fa0a194a9cdc15ba22cae154402bf8939168c Mon Sep 17 00:00:00 2001 From: Colin Arnott Date: Mon, 26 Dec 2022 01:58:32 +0000 Subject: [PATCH] add go module This is a minimum viable change to enable modern go toolchains to build github.com/andreaskoch/allmark/cli in go module mode. The module is not tidy, and we are relying on ./vendor, but it does build. --- go.mod | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 go.mod diff --git a/go.mod b/go.mod new file mode 100644 index 00000000..75fbcfdc --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module github.com/andreaskoch/allmark + +go 1.19