697:4fdde5f56193 | 698:e5389e9fdb82 |
---|---|
1 use warnings; | |
2 use strict; | |
3 use feature ':all'; | |
4 use experimentals; | |
5 | |
6 use lib glob('~/.lib/perl5'); | |
7 | |
8 use Data::Printer { | |
9 filters => {-external => ['JSON', 'URI']}, | |
10 class => {show_methods => 'public', inherited => 'public'}, | |
11 }; | |
12 | |
13 use Path::Tiny; | |
14 | |
15 -e $_ && require($_) for glob('~/.replyrc.local.pl'); | |
16 | |
17 1; |