blob: 14f41b9728253353cdbcf40fe6eb5c56d87ecde6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package hotline
import "time"
const tempBanDuration = 30 * time.Minute
type BanMgr interface {
Add(ip string, until *time.Time) error
IsBanned(ip string) (bool, *time.Time)
}
|