aboutsummaryrefslogtreecommitdiff
path: root/lib/IRC/Client/Server.pm6
diff options
context:
space:
mode:
authorZoffix Znet <cpan@zoffix.com>2016-08-07 22:58:46 -0400
committerZoffix Znet <cpan@zoffix.com>2016-08-07 22:58:46 -0400
commitb1e795877f2447bc634cbb4b269f9ac8bebd67f3 (patch)
treecfc45f9e3f861f911d0d7294b9434956ad659e35 /lib/IRC/Client/Server.pm6
parent8bb81d24b338773f0c56916f919e0457e0182970 (diff)
Add `:alias` feature3.006001
Closes #22
Diffstat (limited to 'lib/IRC/Client/Server.pm6')
-rw-r--r--lib/IRC/Client/Server.pm61
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/IRC/Client/Server.pm6 b/lib/IRC/Client/Server.pm6
index f438d6d..2ed5d69 100644
--- a/lib/IRC/Client/Server.pm6
+++ b/lib/IRC/Client/Server.pm6
@@ -2,6 +2,7 @@ unit class IRC::Client::Server;
has @.channels where .all ~~ Str|Pair;
has @.nick where .all ~~ Str;
+has @.alias where .all ~~ Str|Regex;
has Int $.port where 0 <= $_ <= 65535;
has Str $.label;
has Str $.host;