forked from filerock/FileRock-Client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfilerock.py
52 lines (40 loc) · 1.66 KB
/
filerock.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# -*- coding: ascii -*-
# ______ _ _ _____ _ _____ _ _ _
# | ____(_) | | __ \ | | / ____| (_) | |
# | |__ _| | ___| |__) |___ ___| | __ | | | |_ ___ _ __ | |_
# | __| | | |/ _ \ _ // _ \ / __| |/ / | | | | |/ _ \ '_ \| __|
# | | | | | __/ | \ \ (_) | (__| < | |____| | | __/ | | | |_
# |_| |_|_|\___|_| \_\___/ \___|_|\_\ \_____|_|_|\___|_| |_|\__|
#
# Copyright (C) 2012 Heyware s.r.l.
#
# This file is part of FileRock Client.
#
# FileRock Client is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# FileRock Client is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with FileRock Client. If not, see <http://www.gnu.org/licenses/>.
#
"""
FileRock Client main script
This is the main script of FileRock Client.
FileRock is a backup and synchronization service that provides confidentiality
and checks the integrity of your data.
In order to use FileRock Client, you will need a FileRock account.
You can get one at https://www.filerock.com/register
----
This module is part of the FileRock Client.
Copyright (C) 2012 - Heyware s.r.l.
FileRock Client is licensed under GPLv3 License.
"""
from filerockclient.main import main
if __name__ == '__main__':
main()