summaryrefslogtreecommitdiff
path: root/bus.pl
diff options
context:
space:
mode:
Diffstat (limited to 'bus.pl')
-rw-r--r--bus.pl16
1 files changed, 0 insertions, 16 deletions
diff --git a/bus.pl b/bus.pl
deleted file mode 100644
index 0e25ead..0000000
--- a/bus.pl
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env perl
-use strict;
-use warnings;
-use 5.014;
-use TFL::Bus;
-use Data::Printer;
-
-my $bus = TFL::Bus->new();
-
-my $res = $bus->request(TFL::Bus::Request->new({
- StopPointName => 'Hotspur Road',
- #Towards => 'Islip Manor',
- ReturnList => [qw(StopID StopCode1 VisitNumber TripID VehicleID LineID LineName DirectionID DestinationText DestinationName EstimatedTime)],
-}));
-
-p $res;