]> git.r.bdr.sh - rbdr/mobius/blame - hotline/ban.go
Fix panic on empty news path
[rbdr/mobius] / hotline / ban.go
CommitLineData
46862572
JH
1package hotline
2
3import "time"
4
fd740bc4
JH
5// BanDuration is the length of time for temporary bans.
6const BanDuration = 30 * time.Minute
d9bc63a1
JH
7
8type BanMgr interface {
9 Add(ip string, until *time.Time) error
10 IsBanned(ip string) (bool, *time.Time)
11}