]> git.r.bdr.sh - rbdr/mobius/blob - hotline/ban.go
14f41b9728253353cdbcf40fe6eb5c56d87ecde6
[rbdr/mobius] / hotline / ban.go
1 package hotline
2
3 import "time"
4
5 const tempBanDuration = 30 * time.Minute
6
7 type BanMgr interface {
8 Add(ip string, until *time.Time) error
9 IsBanned(ip string) (bool, *time.Time)
10 }