diff options
author | terminaldweller <devi@terminaldweller.com> | 2025-03-24 20:59:26 +0000 |
---|---|---|
committer | terminaldweller <devi@terminaldweller.com> | 2025-03-24 20:59:26 +0000 |
commit | dc824ea96667b60ede3ac62b75f18e1faded977d (patch) | |
tree | 942149ae3d0d394367dfd1bc469639c1413da240 /utils.go | |
parent | added options to control the exponential backoff reconnects for irc and db (diff) | |
download | milla-dc824ea96667b60ede3ac62b75f18e1faded977d.tar.gz milla-dc824ea96667b60ede3ac62b75f18e1faded977d.zip |
Diffstat (limited to 'utils.go')
-rw-r--r-- | utils.go | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -7,6 +7,13 @@ import ( "github.com/lrstanley/girc" ) +func Min(x, y int) int { + if x < y { + return x + } + return y +} + func IrcJoin(irc *girc.Client, channel []string) { if len(channel) > 1 && channel[1] != "" { irc.Cmd.JoinKey(channel[0], channel[1]) |