aboutsummaryrefslogtreecommitdiff
path: root/lib/IRC/Client/Message.pm6
blob: 69e7c824ab8a678dde7b33a2def128ea94fef519 (plain)
1
2
3
4
5
6
7
8
9
unit role IRC::Client::Message;

has       $.irc      is required;
has Str:D $.nick     is required;
has Str:D $.username is required;
has Str:D $.host     is required;
has Str:D $.usermask is required;
has Str:D $.command  is required;
has Str:D $.server   is required;