summaryrefslogtreecommitdiff
path: root/boha.raku
diff options
context:
space:
mode:
Diffstat (limited to 'boha.raku')
-rw-r--r--boha.raku6
1 files changed, 4 insertions, 2 deletions
diff --git a/boha.raku b/boha.raku
index 28b7263..20172c0 100644
--- a/boha.raku
+++ b/boha.raku
@@ -1,6 +1,8 @@
#!/usr/bin/env rakudo
use v6.d;
use Config::TOML;
+use lib $?FILE.IO.sibling('lib').Str;
+use Boha::TrackOps;
use IRC::Client;
my $config = from-toml(
@@ -61,7 +63,7 @@ class TrackOps does IRC::Client::Plugin {
}
class Boha1 does IRC::Client::Plugin {
- has TrackOps $.ops handles <is-op>;
+ has Boha::TrackOps $.ops handles <is-op>;
# irc-addressed for in-channel messages
# irc-privmsg-me for direct messages
@@ -84,7 +86,7 @@ class Boha1 does IRC::Client::Plugin {
}
}
-my TrackOps $ops .= new;
+my Boha::TrackOps $ops .= new;
my Boha1 $boha .= new(:$ops);
.run with IRC::Client.new(