From ce64fcea793e3cdb1446c10903f22c4dfa3466ee Mon Sep 17 00:00:00 2001 From: Achilleas Koutsou Date: Fri, 24 Nov 2023 18:03:18 +0100 Subject: [PATCH] odc: add empty module for linter Add a go module with an empty main.go so we can configure the linter until we merge the real stuff. --- odc/cmd/osbuild-deploy-container/main.go | 5 +++++ odc/go.mod | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 odc/cmd/osbuild-deploy-container/main.go create mode 100644 odc/go.mod diff --git a/odc/cmd/osbuild-deploy-container/main.go b/odc/cmd/osbuild-deploy-container/main.go new file mode 100644 index 00000000..77d1c0a4 --- /dev/null +++ b/odc/cmd/osbuild-deploy-container/main.go @@ -0,0 +1,5 @@ +package main + +func main() { + // nothing to see here +} diff --git a/odc/go.mod b/odc/go.mod new file mode 100644 index 00000000..cf47f885 --- /dev/null +++ b/odc/go.mod @@ -0,0 +1,3 @@ +module github.com/osbuild/osbuild-deploy-container/odc + +go 1.19