File: Signature.pm

package info (click to toggle)
libmodule-build-perl 0.422000-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,516 kB
  • ctags: 1,083
  • sloc: perl: 11,174; sh: 44; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 160 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
package Module::Signature; # mocked
use strict;
use warnings;
our $VERSION = 999;

sub sign {
  open my $fh, ">", "SIGNATURE";
  print {$fh} "SIGNATURE";
}

1;