The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package # hide from PAUSE
    MyBlog::Controller::Service;

use strict;
use warnings;

use base qw(Catalyst::Controller::Atompub::Service);

sub modify_service {
    my($self, $c, $service) = @_;

    # Edit $service (XML::Atom::Service) if you'd like to modify the
    # Service Document

    $service;
}

1;