Initial Commit

This commit is contained in:
2025-07-07 14:12:53 +12:00
commit fc07e157c8
7 changed files with 640 additions and 0 deletions

9
__main__.py Normal file
View File

@@ -0,0 +1,9 @@
from util.builder.cpp_builder import CppBuilder
def main():
builder = CppBuilder()
builder.load_config("builds.json")
builder.build()
if __name__ == "__main__":
main()