mourningdove/bin/worker/latest-feed
2026-05-24 01:03:05 +00:00

26 lines
606 B
Perl
Executable file

#!/usr/bin/perl
#
# latest-feed
#
# Dispatches the latest-feed job. See cgi-bin/DW/Worker/LatestFeed.pm.
#
# Authors:
# Mark Smith <mark@dreamwidth.org>
#
# Copyright (c) 2009 by Dreamwidth Studios, LLC.
#
# This program is free software; you may redistribute it and/or modify it under
# the same terms as Perl itself. For a copy of the license, please reference
# 'perldoc perlartistic' or 'perldoc perlgpl'.
#
use strict;
BEGIN {
require "$ENV{LJHOME}/cgi-bin/ljlib.pl";
}
use LJ::Worker::TheSchwartz;
use DW::Worker::LatestFeed;
schwartz_decl( "DW::Worker::LatestFeed" );
schwartz_work();