53 lines
1.1 KiB
Perl
53 lines
1.1 KiB
Perl
|
package App::Connex;
|
||
|
|
||
|
use FindBin qw($Bin);
|
||
|
use lib "$Bin/../lib";
|
||
|
use Curses::UI;
|
||
|
use Net::Telnet;
|
||
|
use URI::Split qw(uri_split uri_join);
|
||
|
use URI ();
|
||
|
|
||
|
|
||
|
our $VERSION = '0.9'; # VERSION
|
||
|
|
||
|
1;
|
||
|
# ABSTRACT: A Curses TUI Browser for Nightfall Express NEX:// protocol
|
||
|
|
||
|
__END__
|
||
|
|
||
|
=pod
|
||
|
|
||
|
=encoding UTF-8
|
||
|
|
||
|
=head1 NAME
|
||
|
|
||
|
App::Connex - Curses UI NEX:// browser
|
||
|
|
||
|
=head1 DESCRIPTION A Curses TUI browser for the Nightfall Express protocol, nex://. See https://nightfall.city for details,
|
||
|
especially https://nightfall.city/nex/info/specification.txt
|
||
|
|
||
|
=head1 VERSION
|
||
|
|
||
|
This document describes version 0.9 of App::Connex
|
||
|
|
||
|
|
||
|
=head1 SOURCE
|
||
|
|
||
|
Source repository is at L<https://git.sdf.org/peteyboy/Connex>
|
||
|
=head1 BUGS
|
||
|
|
||
|
Please report any bugs or feature requests on the gitea issues page L<https://git.sdf.org/peteyboy/Connex/issues>
|
||
|
|
||
|
=head1 AUTHOR
|
||
|
|
||
|
peteyboy <peteyboy@sdf.org>
|
||
|
|
||
|
=head1 COPYRIGHT AND LICENSE
|
||
|
|
||
|
This software is copyright (c) 2024, by Pete Dussin, peteyboy@sdf.org
|
||
|
|
||
|
This is free software; you can redistribute it and/or modify it under
|
||
|
the same terms as the Perl 5 programming language system itself.
|
||
|
|
||
|
=cut
|