mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-23 04:19:27 +01:00
21 lines
584 B
Perl
Executable File
21 lines
584 B
Perl
Executable File
#!/usr/bin/env perl
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
use FindBin qw($RealBin);
|
|
use lib "$RealBin/";
|
|
|
|
# configuration is overridden via command-line arguments, do not modify
|
|
# see doc/QuickStart.md
|
|
my %config = (
|
|
data_dir => "$RealBin/data",
|
|
module_dir => "$RealBin/modules",
|
|
plugin_dir => "$RealBin/Plugins",
|
|
update_dir => "$RealBin/updates",
|
|
);
|
|
|
|
use PBot::PBot;
|
|
PBot::PBot->new(%config)->start();
|