F1DataTelegramBot/bot_script.pl

27 lines
375 B
Perl
Raw Normal View History

2023-05-08 17:00:34 +02:00
#/usr/bin/perl
2023-07-07 18:44:25 +02:00
use v5.32;
2023-05-22 18:29:46 +02:00
use strict;
use warnings;
use FindBin;
use YAML;
my $Conf;
BEGIN { $Conf = YAML::LoadFile("$FindBin::Bin/.f1bot.cnf"); }
if ( !$Conf->%* ) {
print STDERR "No valid config was found. Exiting...\n";
exit;
}
use lib $Conf->{Lib};
2023-05-08 17:00:34 +02:00
use F1DataBot;
my $F1DataBotObject = F1DataBot->new($Conf->%*);
$F1DataBotObject->fetchMessages();
exit;