Files
CTF-tool/src/ctf/main.py
2026-04-05 23:31:32 -05:00

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()