skeleton config objects and loading
[scpubgit/Clifton.git] / lib / App / Clifton / BridgeConfig / IRC.pm
1 package App::Clifton::BridgeConfig::IRC;
2
3 use Moo;
4
5 has $_ => (is => 'ro', required => 1)
6   for qw(server channel);
7
8 1;