Initial checkin for dcc v2. Includes support for play/record/fabricate.

This commit is contained in:
yrriban 2025-04-07 02:19:25 -04:00
parent 9a790b0b3a
commit e78453d6bd
8 changed files with 166 additions and 0 deletions

5
dcc/__main__.py Normal file
View file

@ -0,0 +1,5 @@
import sys
from dcc.main import main
if __name__ == '__main__':
sys.exit(main(sys.argv[1:]))