initialized as project

This commit is contained in:
venus
2026-04-05 23:00:30 -05:00
parent a79a7ac076
commit a70694dbd5
3 changed files with 0 additions and 0 deletions

2
src/ctf/__init.py__ Normal file
View File

@@ -0,0 +1,2 @@
# Initialize the projcet (make a package)
# src/__init.py__

9
src/ctf/commands.py Normal file
View File

@@ -0,0 +1,9 @@
# functions for commands needed
# src/commands.py
import os
# Read variables
# Initialize a challenge
## Copy files into directory
## add section to log

8
src/ctf/main.py Normal file
View File

@@ -0,0 +1,8 @@
# src/main.py
# Parses and calls commands
def main():
print("Hello from ctf!")
if __name__ == "__main__":
main()