From c4b901e8053e8618a924b5480c6831a9223e7158 Mon Sep 17 00:00:00 2001 From: vilmibm Date: Fri, 19 Mar 2021 04:18:49 +0000 Subject: [PATCH] initial commit --- README.md | 5 +++++ TODO | 2 ++ go.mod | 1 + 3 files changed, 8 insertions(+) create mode 100644 README.md create mode 100644 TODO create mode 100644 go.mod diff --git a/README.md b/README.md new file mode 100644 index 0000000..5a68ddd --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +it might end up being more but for now this repository houses common tooling for tide.town. the +primary impetus is to share some common Go code i want to use in a variety of helper programs (stuff +for querying the town about users and statistics and things). + +it might house non-go code eventually, we'll see. diff --git a/TODO b/TODO new file mode 100644 index 0000000..abaa1b5 --- /dev/null +++ b/TODO @@ -0,0 +1,2 @@ +- [ ] admin check for a user struct +- [ ] get user stats/info diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..8ab49e9 --- /dev/null +++ b/go.mod @@ -0,0 +1 @@ +go 1.14