File: Author.pm

package info (click to toggle)
libcpandb-perl 0.19-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 324 kB
  • sloc: perl: 628; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 194 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
package CPANDB::Author;

use 5.008;
use strict;
use CPANDB::Distribution ();

our $VERSION = '0.19';

sub distributions {
	CPANDB::Distribution->select('WHERE author = ?', $_[0]->author);
}

1;