#!/usr/bin/env perl #============================================================================== # # USAGE: ./update_rfcs.pl # # DESCRIPTION: update the status of RFCs from the Trello Board to the hilis # database #============================================================================== #package update_rfcs; # in main:: package for now use Modern::Perl; use utf8; sub run{ say "running"; # update_statuses } __PACKAGE__->run unless caller(); 1;