mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-02 18:19:33 +01:00
35 lines
636 B
Perl
35 lines
636 B
Perl
# File: Imports.pm
|
|
#
|
|
# Purpose: Boilerplate imports for PBot packages.
|
|
|
|
# SPDX-FileCopyrightText: 2021 Pragmatic Software <pragma78@gmail.com>
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
package PBot::Imports;
|
|
|
|
use Import::Into;
|
|
|
|
sub import {
|
|
my $target = caller;
|
|
|
|
# use strict
|
|
strict->import::into($target);
|
|
|
|
# use warnings
|
|
warnings->import::into($target);
|
|
|
|
# use feature ':5.16'
|
|
feature->import::into($target, ':5.16');
|
|
|
|
# use utf8
|
|
utf8->import::into($target);
|
|
|
|
# no if $] >= 5.018, warnings => 'experimental';
|
|
warnings->unimport::out_of($target, 'experimental') if $] >= 5.018
|
|
}
|
|
|
|
sub unimport {
|
|
}
|
|
|
|
1;
|