From cce4d5db5cfad186d44a80f34a8e90f9cdae0ffa Mon Sep 17 00:00:00 2001 From: Rens Houben Date: Tue, 15 Jul 2025 12:40:24 +0200 Subject: [PATCH] Moved http related functions to their own file; added 'sum.go' for a second endpoint. --- .gitignore | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a309a01 --- /dev/null +++ b/.gitignore @@ -0,0 +1,23 @@ +# Allowlisting gitignore template for GO projects prevents us +# from adding various unwanted local files, such as generated +# files, developer configurations or IDE-specific files etc. +# +# Recommended: Go.AllowList.gitignore + +# Ignore everything +* + +# But not these files... +!/.gitignore + +!*.go +!go.sum +!go.mod + +!README.md +!LICENSE + +# !Makefile + +# ...even if they are in subdirectories +!*/