commit db3c7fef99e7e941928a0f59ea361d6f308c509d Author: Norberto A. (GitHub @Limesey) <41595007+Limesey@users.noreply.github.com> Date: Fri May 7 15:39:08 2021 +0100 First commit 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 0000000..daa8f8e Binary files /dev/null and b/README.md differ 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!") +}