The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Server::Basic;

use Moo;

extends 'Server::Base';

sub dispatch { return }

with 'Server::Capability::GetEncoding', 'Server::Capability::RunCommand';


1;