commit 1aec4cd36a970beea09b9fa1d9b26d5e07e7e119 Author: Kent Daleng Date: Tue Aug 17 13:39:10 2021 +0200 initial commit diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3085a96 --- /dev/null +++ b/Makefile @@ -0,0 +1,3 @@ +wonderwall: + go build -o bin/wonderwall cmd/wonderwall/*.go + diff --git a/README.md b/README.md new file mode 100644 index 0000000..b611268 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# wonderwall diff --git a/cmd/wonderwall/main.go b/cmd/wonderwall/main.go new file mode 100644 index 0000000..06ab7d0 --- /dev/null +++ b/cmd/wonderwall/main.go @@ -0,0 +1 @@ +package main diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..3ad946c --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module github.com/nais/wonderwall + +go 1.16