| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
#!/usr/bin/env perl |
|
2
|
|
|
|
|
|
|
# Copyright (C) 2018–2021 Alex Schroeder |
|
3
|
|
|
|
|
|
|
# |
|
4
|
|
|
|
|
|
|
# This program is free software: you can redistribute it and/or modify it under |
|
5
|
|
|
|
|
|
|
# the terms of the GNU Affero General Public License as published by the Free |
|
6
|
|
|
|
|
|
|
# Software Foundation, either version 3 of the License, or (at your option) any |
|
7
|
|
|
|
|
|
|
# later version. |
|
8
|
|
|
|
|
|
|
# |
|
9
|
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful, but WITHOUT |
|
10
|
|
|
|
|
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
|
11
|
|
|
|
|
|
|
# FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more |
|
12
|
|
|
|
|
|
|
# details. |
|
13
|
|
|
|
|
|
|
# |
|
14
|
|
|
|
|
|
|
# You should have received a copy of the GNU Affero General Public License along |
|
15
|
|
|
|
|
|
|
# with this program. If not, see . |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 NAME |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
hex-describe - a web app to add random table driven data to map data |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
This command starts a web server using Mojolicious. |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 SEE ALSO |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
For more information, see . |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 LICENSE |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
GNU Affero General Public License |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=cut |
|
34
|
|
|
|
|
|
|
|
|
35
|
4
|
|
|
4
|
|
21785
|
use Modern::Perl; |
|
|
4
|
|
|
|
|
49266
|
|
|
|
4
|
|
|
|
|
28
|
|
|
36
|
4
|
|
|
4
|
|
4046
|
use FindBin; |
|
|
4
|
|
|
|
|
5603
|
|
|
|
4
|
|
|
|
|
307
|
|
|
37
|
4
|
|
|
4
|
|
1952
|
use lib "$FindBin::Bin/../lib"; |
|
|
4
|
|
|
|
|
3225
|
|
|
|
4
|
|
|
|
|
45
|
|
|
38
|
4
|
|
|
|
|
623443
|
require Game::HexDescribe; |