mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-05 19:49:32 +01:00
Progress on refactoring and polishing everything
This commit is contained in:
parent
51bafbe841
commit
97361b40a2
18
PBot/PBot.pm
18
PBot/PBot.pm
@ -3,17 +3,15 @@
|
||||
# Purpose: IRC Bot
|
||||
#
|
||||
# PBot was started around 2001, 2002. It has been lovingly maintained;
|
||||
# however, it does use the ancient Net::IRC package and some outdated
|
||||
# Perl5 practices.
|
||||
# however, it does use the ancient but simple Net::IRC package (if it
|
||||
# ain't broke) instead of packages based on significantly more complex
|
||||
# Enterprise-level event-loop frameworks. PBot uses pure Perl 5 blessed
|
||||
# classes instead of something like Moo or Object::Pad, though this may
|
||||
# change eventually.
|
||||
#
|
||||
# It would be nice to use modern packages like Moo (or even Dios!)
|
||||
# and Mojo::IRC, but PBot is a labor of 20+ years of love and contains
|
||||
# many significant features that depend on how Net::IRC and Perl5 behaves.
|
||||
#
|
||||
# But don't fear. PBot's forked Net::IRC package has also been maintained
|
||||
# and updated along with PBot. It contains numerous bugfixes and supports
|
||||
# various new features such as IRCv3 client capability negotiation and SASL
|
||||
# user authentication.
|
||||
# PBot has forked the Net::IRC package internally as PBot::IRC. It contains
|
||||
# numerous bugfixes and supports various new features such as IRCv3 client
|
||||
# capability negotiation and SASL user authentication.
|
||||
|
||||
# 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
|
||||
|
26
pbot
26
pbot
@ -4,30 +4,16 @@
|
||||
# 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/.
|
||||
|
||||
# PBot was started around 2001, 2002. It has been lovingly maintained;
|
||||
# however, it does use the ancient Net::IRC package and some outdated
|
||||
# Perl5 practices.
|
||||
#
|
||||
# It would be nice to use modern packages like Moo (or even Dios!)
|
||||
# and Mojo::IRC, but PBot is a labor of 20+ years of love and contains
|
||||
# many significant features that depend on how Net::IRC and Perl5 behaves.
|
||||
#
|
||||
# But don't fear. PBot's forked Net::IRC package has also been maintained
|
||||
# and updated along with PBot. It contains numerous bugfixes and supports
|
||||
# various new features such as IRCv3 client capability negotiation and SASL
|
||||
# user authentication.
|
||||
|
||||
use FindBin qw($RealBin);
|
||||
use lib "$RealBin/";
|
||||
|
||||
# configuration is overridden via command-line arguments, do not modify
|
||||
# see doc/QuickStart.md
|
||||
my %config = (
|
||||
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",
|
||||
);
|
||||
|
||||
use PBot::PBot;
|
||||
PBot::PBot->new(%config)->start();
|
||||
)->start;
|
||||
|
Loading…
Reference in New Issue
Block a user