17 lines
272 B
Perl
17 lines
272 B
Perl
|
#!/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;
|