-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.py
More file actions
30 lines (22 loc) · 1.31 KB
/
main.py
File metadata and controls
30 lines (22 loc) · 1.31 KB
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
#! /usr/bin/env python3
# ########################################################################################## #
# #
# Main: MapTasker entry point #
# #
# GNU General Public License v3.0 #
# Permissions of this strong copyleft license are conditioned on making available #
# complete source code of licensed works and modifications, which include larger works #
# using a licensed work, under the same license. Copyright and license notices must be #
# preserved. Contributors provide an express grant of patent rights. #
# #
# ########################################################################################## #
from maptasker.src import mapit
def main():
"""
Kick off the main program: mapit.pypwd
"""
# Call the core function passing an empty filename
return_code = mapit.mapit_all("")
exit(return_code)
if __name__ == "__main__":
main()