Help language development. Donate to The Perl Foundation
IRC::Client::Plugin::UrlTitle
Patrick Spek [email protected]
1.1.2
Plugin for IRC::Client to report titles of URLs posted in IRC channels.
Install this module through zef:
zef install IRC::Client::Plugin::UrlTitle
Next, you can use it as a plugin in an IRC::Client
project by adding it in the :plugins
parameter:
use Config;
use IRC::Client;
use IRC::Client::Plugin::UrlTitle;
sub MAIN
{
.run with IRC::Client.new(
:nick("testbot"),
:plugins(
IRC::Client::Plugin::UrlTitle.new,
)
);
}
This module is distributed under the terms of the GPL-3.0.