initialized as project
This commit is contained in:
2
src/ctf/__init.py__
Normal file
2
src/ctf/__init.py__
Normal file
@@ -0,0 +1,2 @@
|
||||
# Initialize the projcet (make a package)
|
||||
# src/__init.py__
|
||||
9
src/ctf/commands.py
Normal file
9
src/ctf/commands.py
Normal 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
8
src/ctf/main.py
Normal file
@@ -0,0 +1,8 @@
|
||||
# src/main.py
|
||||
# Parses and calls commands
|
||||
def main():
|
||||
print("Hello from ctf!")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user