Bump version and update Changes
[app-fonbot-daemon.git] / fonbotd
1 #!/usr/bin/perl -wT
2 use v5.14;
3 use strict;
4
5 use App::FonBot::Daemon;
6
7 App::FonBot::Daemon::run;
8 END { App::FonBot::Daemon::finish };
9
10 __END__
11
12 =head1 NAME
13
14 fonbotd - FonBot daemon
15
16 =head1 SYNOPSIS
17
18 fonbotd
19
20 =head1 DESCRIPTION
21
22 FonBot is an Android application that lets users control their phones through the internet or through text messages.
23
24 Users can communicate with the applications through Yahoo! Messenger, Jabber and IRC (on the OFTC network). Email support is planned.
25
26 This is the FonBot server, a daemon which relays messages between users and their phones.
27
28 =head1 AUTHOR
29
30 Marius Gavrilescu C<< marius@ieval.ro >>
31
32 =head1 COPYRIGHT AND LICENSE
33
34 Copyright 2013 Marius Gavrilescu
35
36 This file is part of fonbotd.
37
38 fonbotd is free software: you can redistribute it and/or modify
39 it under the terms of the GNU Affero General Public License as published by
40 the Free Software Foundation, either version 3 of the License, or
41 (at your option) any later version.
42
43 fonbotd is distributed in the hope that it will be useful,
44 but WITHOUT ANY WARRANTY; without even the implied warranty of
45 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
46 GNU Affero General Public License for more details.
47
48 You should have received a copy of the GNU Affero General Public License
49 along with fonbotd. If not, see <http://www.gnu.org/licenses/>
50
51
52 =cut
This page took 0.022592 seconds and 4 git commands to generate.