From c08d48a109f6af4d49f9283c31a7f5bf3a2cd4fa Mon Sep 17 00:00:00 2001 From: Max Altgelt Date: Wed, 23 Sep 2020 16:10:47 +0200 Subject: [PATCH] chore: Replace usage of golang with go --- {golang => go}/.gitignore | 0 {golang => go}/Makefile | 0 {golang => go}/README.md | 4 ++-- {golang => go}/collector.go | 0 {golang => go}/config.go | 0 {golang => go}/main.go | 0 {golang => go}/parseflags.go | 0 7 files changed, 2 insertions(+), 2 deletions(-) rename {golang => go}/.gitignore (100%) rename {golang => go}/Makefile (100%) rename {golang => go}/README.md (95%) rename {golang => go}/collector.go (100%) rename {golang => go}/config.go (100%) rename {golang => go}/main.go (100%) rename {golang => go}/parseflags.go (100%) diff --git a/golang/.gitignore b/go/.gitignore similarity index 100% rename from golang/.gitignore rename to go/.gitignore diff --git a/golang/Makefile b/go/Makefile similarity index 100% rename from golang/Makefile rename to go/Makefile diff --git a/golang/README.md b/go/README.md similarity index 95% rename from golang/README.md rename to go/README.md index ff50a1c..abe9515 100644 --- a/golang/README.md +++ b/go/README.md @@ -1,11 +1,11 @@ # THOR Thunderstorm Collector Executable -The Thunderstorm collector executable is an open-source tool written in Golang to upload files to THOR Thunderstorm. +The Thunderstorm collector executable is an open-source tool written in Go to upload files to THOR Thunderstorm. A Makefile has been added to allow for simplified creation of executables. The generated executables are statically linked, and no further dependencies on the target systems exist. ### Build requirements -- Golang version 1.12 or higher +- Go version 1.12 or higher - make ### Build diff --git a/golang/collector.go b/go/collector.go similarity index 100% rename from golang/collector.go rename to go/collector.go diff --git a/golang/config.go b/go/config.go similarity index 100% rename from golang/config.go rename to go/config.go diff --git a/golang/main.go b/go/main.go similarity index 100% rename from golang/main.go rename to go/main.go diff --git a/golang/parseflags.go b/go/parseflags.go similarity index 100% rename from golang/parseflags.go rename to go/parseflags.go