MTGPrint/scripts/start_bot.pl

17 lines
272 B
Perl
Raw Normal View History

2024-05-22 23:41:27 +02:00
#!/usr/bin/env perl
# perl -Ilib -MTgMagicPdf -e 'TgMagicPdf->new->run';
use v5.38.2;
use strict;
use warnings;
use feature 'signatures';
use File::Basename;
use lib dirname(dirname(__FILE__)).'/lib';
use TgMagicPdf;
say 'Starting the Bot...';
TgMagicPdf->new->run;