summaryrefslogtreecommitdiff
path: root/lib/WebService/TFL/TubeStatus/Types.pm
blob: d1cb141c978178735efbbfb5a207709382c732c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
package WebService::TFL::TubeStatus::Types; 
use strict;
use warnings;
use Type::Library -base, -declare => qw(LineT LineStatusT);
use Type::Utils -all;
use namespace::autoclean;
 
class_type LineT, { class => 'WebService::TFL::TubeStatus::Response::Line' };
class_type LineStatusT, { class => 'WebService::TFL::TubeStatus::Response::LineStatus' };
 
1;