aboutsummaryrefslogtreecommitdiffstats
path: root/utils.go
diff options
context:
space:
mode:
authorterminaldweller <devi@terminaldweller.com>2025-03-24 20:59:26 +0000
committerterminaldweller <devi@terminaldweller.com>2025-03-24 20:59:26 +0000
commitdc824ea96667b60ede3ac62b75f18e1faded977d (patch)
tree942149ae3d0d394367dfd1bc469639c1413da240 /utils.go
parentadded options to control the exponential backoff reconnects for irc and db (diff)
downloadmilla-dc824ea96667b60ede3ac62b75f18e1faded977d.tar.gz
milla-dc824ea96667b60ede3ac62b75f18e1faded977d.zip
initial support for triggered lua functionsHEADmain
Diffstat (limited to 'utils.go')
-rw-r--r--utils.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/utils.go b/utils.go
index 6bf0015..d990504 100644
--- a/utils.go
+++ b/utils.go
@@ -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])