tof-voters: begin tool for voter membership

The TOF voting requires looking at Gerrit data to determine who is
eligible to vote.  Start a tool that can be used to dump and analyze
this data.

First sub-command added is a method to dump all Gerrit data after a
certain date (typically the cut-off for the previous election).

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I02b22c9dcb81b570ac3872d7c38f838d61690c83
diff --git a/tof-voters/voters b/tof-voters/voters
new file mode 100755
index 0000000..75c105e
--- /dev/null
+++ b/tof-voters/voters
@@ -0,0 +1,7 @@
+#!/bin/env -S python3 -B
+
+from libvoters.entry_point import main
+import sys
+
+if __name__ == "__main__":
+    sys.exit(main())