File: Module.pm

package info (click to toggle)
fusioninventory-agent 1%3A2.6-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 27,488 kB
  • sloc: perl: 120,896; xml: 9,459; sh: 760; python: 26; makefile: 13
file content (14 lines) | stat: -rw-r--r-- 136 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package FusionInventory::Test::Module;

use strict;
use warnings;

sub mirror {
    return $_[0];
}

sub loop {
    while (1) {};
}

1;