projects
/
working
/
NCIPServer.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Skeletal start of the TCP based server
[working/NCIPServer.git]
/
lib
/
NCIPServer.pm
1
package NCIPServer;
2
3
use Modern::Perl;
4
5
require Net::Server::PreFork;;
6
7
our @ISA = qw(Net::Server::PreFork);
8
9
our $VERSION = '0.01';
10
11
12
13
1;
14
__END__