blob: d8be412b9428e3322a0e0394d9e47b8470295546 (
plain) (
tree)
|
|
use strict;
use warnings;
use Irssi;
our $VERSION = '0.1';
our %IRSSI = (
authors => '',
contact => '',
name => '',
description => '',
license => 'Public Domain',
);
init();
sub init {
Irssi::command_bind('ft', \&format_test);
}
sub format_test {
my ($args, $win, $server) = @_;
}
|