From 456135cde826cee2f6b452900f0b3211bbe505d7 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Sat, 15 Jul 2023 20:21:03 +0100 Subject: [PATCH] Initialise module --- .dockerignore | 21 +++++++++++++++++++++ .gitignore | 21 +++++++++++++++++++++ go.mod | 3 +++ 3 files changed, 45 insertions(+) create mode 100644 .dockerignore create mode 100644 .gitignore create mode 100644 go.mod diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..7cd1091 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,21 @@ +# If you prefer the allow list template instead of the deny list, see community template: +# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore +# +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# Dependency directories (remove the comment below to include it) +# vendor/ + +# Go workspace file +go.work \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7cd1091 --- /dev/null +++ b/.gitignore @@ -0,0 +1,21 @@ +# If you prefer the allow list template instead of the deny list, see community template: +# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore +# +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# Dependency directories (remove the comment below to include it) +# vendor/ + +# Go workspace file +go.work \ No newline at end of file diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..0c8852f --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.fjla.uk/owlboard/mq-client + +go 1.19