summaryrefslogtreecommitdiff
path: root/src/perl/textui/TextUI.pm
blob: 2bcd17ff34c8dd24a0a8ed19a9a636ff094ddae8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#
# Perl interface to irssi functions.
#

package Irssi::TextUI;

use strict;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);

$VERSION = "0.9";

require Exporter;
require DynaLoader;

@ISA = qw(Exporter DynaLoader);
@EXPORT = qw();
@EXPORT_OK = qw();

bootstrap Irssi::TextUI $VERSION;

Irssi::TextUI::init();

1;