From 4ec35569699bf2e5db535f0a4572410c5d9f7b63 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Sat, 22 Jun 2024 09:05:06 -0700 Subject: [PATCH] Initial commit --- .gitignore | 1 + go.mod | 3 +++ process.go | 4 ++++ 3 files changed, 8 insertions(+) create mode 100644 .gitignore create mode 100644 go.mod create mode 100644 process.go diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..afed073 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.csv diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..3ffcbf9 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module github.com/flamingcow66/helios-data-pipeline + +go 1.22.4 diff --git a/process.go b/process.go new file mode 100644 index 0000000..da29a2c --- /dev/null +++ b/process.go @@ -0,0 +1,4 @@ +package main + +func main() { +}