This repository has been archived by the owner on Dec 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
desktop_run.py
37 lines (32 loc) · 1.49 KB
/
desktop_run.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
#!/usr/bin/python
#
#
# =++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# ____ _ __ ____ __ _ ____
# / __ ) (_) / /_ / __/ ____ _____ ___ _____ / /_ (_) ____ / __/ ____
# / __ | / / / __/ / /_ / __ \ / ___/ / _ \ / ___/ / __/ / / / __ \ / /_ / __ \
# / /_/ / / / / /_ / __/ / /_/ / / / / __/ (__ ) / /_ / / / / / / / __/ / /_/ /
# /_____/ /_/ \__/ /_/ \____/ /_/ \___/ /____/ \__/ /_/ /_/ /_/ /_/ \____/
#
# =++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#
# Suraj Singh Bisht
#
#
#
# This Script Is A Part Of RC-AIA Framework.
# Created For Educational And Practise purpose Only.
# Please Don't Remove Author Initials.
#
#
__author__ = "Suraj Singh Bisht"
__description__ = "Self Driving Phase One"
__version__ = "Beta"
__date__ = "OCT, 2018"
__email__ = "[email protected]"
# importing Server Functionality
from src import main
# Main Trigger
if __name__ == '__main__':
main.desktop_main()