3
0
mirror of https://github.com/pragma-/pbot.git synced 2025-03-11 00:40:46 +01:00
pbot/bin/pbot

26 lines
586 B
Plaintext
Raw Normal View History

2021-07-13 19:45:56 -07:00
#!/usr/bin/env perl
# File: pbot
#
# Purpose: PBot main entry point. See doc/QuickStart.md.
2023-02-20 21:31:52 -08:00
# SPDX-FileCopyrightText: 2001-2023 Pragmatic Software <pragma78@gmail.com>
2021-07-13 19:45:56 -07:00
# SPDX-License-Identifier: MIT
2021-08-15 19:42:09 -07:00
# to find real location of pbot script
use FindBin qw($RealBin);
2021-08-15 19:42:09 -07:00
# allow loading of Perl packages from this location
use lib "$RealBin/../lib";
2021-08-15 19:42:09 -07:00
# allow loading of PBot plugins from ~/.pbot
2021-07-13 19:45:56 -07:00
use lib "$ENV{HOME}/.pbot";
2021-07-20 23:20:24 -07:00
use PBot::Core;
2021-07-13 19:45:56 -07:00
2021-07-20 23:20:24 -07:00
PBot::Core->new(
data_dir => "$RealBin/../data",
applet_dir => "$RealBin/../applets",
update_dir => "$RealBin/../updates",
2021-07-13 19:45:56 -07:00
)->start;