File: Rotators.pm

package info (click to toggle)
dizzy 0.3-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 288 kB
  • sloc: perl: 1,864; makefile: 12; xml: 12; sh: 6
file content (14 lines) | stat: -rw-r--r-- 159 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package Dizzy::Rotators;

use strict;
use warnings;

use Dizzy::Rotators::Default;

sub rotators {
	return (
		Dizzy::Rotators::Default::rotators(),
	);
}

1;