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