aboutsummaryrefslogtreecommitdiff
path: root/lib/IRC/Client/Server.pm6
diff options
context:
space:
mode:
Diffstat (limited to 'lib/IRC/Client/Server.pm6')
-rw-r--r--lib/IRC/Client/Server.pm620
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/IRC/Client/Server.pm6 b/lib/IRC/Client/Server.pm6
deleted file mode 100644
index 18f7755..0000000
--- a/lib/IRC/Client/Server.pm6
+++ /dev/null
@@ -1,20 +0,0 @@
-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 Bool $.ssl = False;
-has Str $.ca-file;
-has Str $.label;
-has Str $.host;
-has Str $.password;
-has Str $.username;
-has Str $.userhost;
-has Str $.userreal;
-has Str $.current-nick is rw;
-has Bool $.is-connected is rw;
-has Bool $.has-quit is rw;
-has $.socket is rw;
-
-method Str { $!label }