15 lines
231 B
Python
15 lines
231 B
Python
# src/main.py
|
|
# Parses and calls commands
|
|
|
|
import argparse
|
|
from ctf import commands
|
|
from ctf import utils
|
|
def main():
|
|
print("Hello from ctf!")
|
|
utils.load_config()
|
|
commands.test()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|