diff options
Diffstat (limited to 'bin/fixmystreet.com/bromley-fetch-waste')
-rwxr-xr-x | bin/fixmystreet.com/bromley-fetch-waste | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/bin/fixmystreet.com/bromley-fetch-waste b/bin/fixmystreet.com/bromley-fetch-waste new file mode 100755 index 000000000..392905c83 --- /dev/null +++ b/bin/fixmystreet.com/bromley-fetch-waste @@ -0,0 +1,24 @@ +#!/usr/bin/env perl + +use v5.14; +use warnings; + +BEGIN { + use File::Basename qw(dirname); + use File::Spec; + my $d = dirname(File::Spec->rel2abs($0)); + require "$d/../../setenv.pl"; +} + +use Getopt::Long::Descriptive; +use FixMyStreet::Cobrand::Bromley; + +my ($opts, $usage) = describe_options( + '%c %o', + ['verbose|v', 'more verbose output'], + ['help|h', "print usage message and exit" ], +); +$usage->die if $opts->help; + +my $cobrand = FixMyStreet::Cobrand::Bromley->new; +$cobrand->waste_fetch_events($opts->verbose); |