From db3c7fef99e7e941928a0f59ea361d6f308c509d Mon Sep 17 00:00:00 2001 From: "Norberto A. (GitHub @Limesey)" <41595007+Limesey@users.noreply.github.com> Date: Fri, 7 May 2021 15:39:08 +0100 Subject: [PATCH] First commit --- .gitignore | 35 +++++++++++++++++++++++++++++++++++ README.md | Bin 0 -> 44 bytes go.mod | 3 +++ src/main.go | 9 +++++++++ 4 files changed, 47 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 go.mod create mode 100644 src/main.go diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a364ce4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,35 @@ +# 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/ + +# Swap +[._]*.s[a-v][a-z] +!*.svg # comment out if you don't need vector files +[._]*.sw[a-p] +[._]s[a-rt-v][a-z] +[._]ss[a-gi-z] +[._]sw[a-p] + +# Session +Session.vim +Sessionx.vim + +# Temporary +.netrwhist +*~ +# Auto-generated tag files +tags +# Persistent undo +[._]*.un~ diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..daa8f8e2d642eba60c5a0f14b62d829a87344f9d GIT binary patch literal 44 ucmezWPnki1p@<=$A&DUeNLDcD0?AT_5{5K}OdzStkPH;hWZ-4sVgLa6+6fx~ literal 0 HcmV?d00001 diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..84a7ef3 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module outfitcli + +go 1.16 diff --git a/src/main.go b/src/main.go new file mode 100644 index 0000000..8f61880 --- /dev/null +++ b/src/main.go @@ -0,0 +1,9 @@ +package main + +import ( + "fmt" +) + +func main() { + fmt.Println("Hello, world!") +}