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 Vending::Command::Service::Add;
use strict;
use warnings;

use Vending;
class Vending::Command::Service::Add {
    is => 'Vending::Command::Service',
    doc => 'Add items to the vending machine',
    is_abstract => 1,
};

1;