File: Types.pm

package info (click to toggle)
libcourriel-perl 0.49-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,312 kB
  • sloc: perl: 2,526; sh: 23; makefile: 7
file content (19 lines) | stat: -rw-r--r-- 296 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package Courriel::Types;

use strict;
use warnings;
use namespace::autoclean;

use parent 'MooseX::Types::Combine';

our $VERSION = '0.49';

__PACKAGE__->provide_types_from(
    qw(
        MooseX::Types::Common::String
        MooseX::Types::Moose
        Courriel::Types::Internal
    )
);

1;