-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
38 lines (30 loc) · 1.09 KB
/
main.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
##################################################################################
# Module: main.py
# Description: The main module manages the execution of all simulator's functions
#
# Created on 24/feb/2019
# @author: Dimitri Belli
# License: GPLv3
# Web: https://github.com/Lafcadio79/Multi-Access-Edge-Fog-Crowd-Sensing-Simulator
##################################################################################
# This program is free software; you can redistribuite it and/or modify it under
# the terms of the GNU/General Pubblic License as published the Free software
# Foundation; either version 3 of the License, or (at your opinion) any later
# version
##################################################################################
import time
import os
from users import *
from tasks import *
from text_menu import *
from utility import *
from output import *
__author__ = "Dimitri Belli"
__contact__ = "dimitri.belli@di.unipi.it"
__website__ = "still under construction"
__license__ = "GPL3"
def run():
# text_menu module
main_menu()
# execution
run()