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