summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/App/Termcast.pm4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/App/Termcast.pm b/lib/App/Termcast.pm
index 7121fe8..488e948 100644
--- a/lib/App/Termcast.pm
+++ b/lib/App/Termcast.pm
@@ -21,24 +21,28 @@ has host => (
is => 'rw',
isa => 'Str',
default => 'noway.ratry.ru',
+ documentation => 'Hostname of the termcast server to connect to',
);
has port => (
is => 'rw',
isa => 'Int',
default => 31337,
+ documentation => 'Port to connect to on the termcast server',
);
has user => (
is => 'rw',
isa => 'Str',
default => sub { $ENV{USER} },
+ documentation => 'Username for the termcast server',
);
has password => (
is => 'rw',
isa => 'Str',
default => 'asdf', # really unimportant
+ documentation => 'Password for the termcast server (mostly unimportant)',
);
sub run {