File: ReExportViaSubExporter.pm

package info (click to toggle)
perlimports 0.000058-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,240 kB
  • sloc: perl: 5,949; sh: 5; makefile: 4
file content (17 lines) | stat: -rw-r--r-- 197 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package Local::ReExportViaSubExporter;

use strict;
use warnings;

use Carp;

use Sub::Exporter -setup => {
    exports => [
        'croak',
        'other_func',
    ]
};

sub other_func { }

1;