12 lines
137 B
Python
Executable file
12 lines
137 B
Python
Executable file
#! /usr/bin/python3
|
|
|
|
import arguments
|
|
|
|
|
|
def main():
|
|
args = arguments.parse()
|
|
print(args)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|