irc-tele-bridge/Secrets.pm.example

18 lines
339 B
Text

package Secrets;
use strict;
use warnings;
use Exporter 'import';
our @EXPORT_OK = qw(
TELEGRAM_TOKEN
TELEGRAM_USER_ID
NICKSERV_PASSWORD
IRC_CHANNEL
);
our TELEGRAM_TOKEN => 'Bot Token'
our TELEGRAM_USER_ID => 123456789;
our NICKSERV_PASSWORD => 'supersecretpassword';
our constant IRC_CHANNEL => '#lobby';
1;