From 46862572ad2977a87baeda0aa8a9e678c533559d Mon Sep 17 00:00:00 2001 From: Jeff Halter <868228+jhalter@users.noreply.github.com> Date: Fri, 24 Jun 2022 16:10:42 -0700 Subject: Implement user ban --- hotline/ban.go | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 hotline/ban.go (limited to 'hotline/ban.go') diff --git a/hotline/ban.go b/hotline/ban.go new file mode 100644 index 0000000..0b75e8e --- /dev/null +++ b/hotline/ban.go @@ -0,0 +1,5 @@ +package hotline + +import "time" + +const tempBanDuration = 30 * time.Minute -- cgit