mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-09 13:39:34 +01:00
23 lines
556 B
Perl
Executable File
23 lines
556 B
Perl
Executable File
#!/usr/bin/env perl
|
|
|
|
# File: pbot
|
|
#
|
|
# Purpose: PBot main entry point. See doc/QuickStart.md.
|
|
|
|
# SPDX-FileCopyrightText: 2021 Pragmatic Software <pragma78@gmail.com>
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
use FindBin qw($RealBin);
|
|
use lib "$RealBin/";
|
|
|
|
use PBot::PBot;
|
|
|
|
PBot::PBot->new(
|
|
# configuration is overridden via command-line arguments.
|
|
# do not modify these values. see doc/QuickStart.md
|
|
data_dir => "$RealBin/data",
|
|
module_dir => "$RealBin/modules",
|
|
plugin_dir => "$RealBin/Plugins",
|
|
update_dir => "$RealBin/updates",
|
|
)->start;
|