9 lines
102 B
Python
9 lines
102 B
Python
|
#!/usr/local/bin/python3
|
||
|
|
||
|
def main():
|
||
|
# Commands here
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|