initial commit

This commit is contained in:
Zoe
2024-12-03 01:36:29 -06:00
commit 8a55c1593b
11 changed files with 648 additions and 0 deletions

15
zqdgr.config.json Normal file
View File

@@ -0,0 +1,15 @@
{
"name": "Go Project",
"version": "0.0.1",
"description": "Example description",
"author": "you",
"license": "BSL-1.0",
"scripts": {
"build:daemon": "go build -o fluxd cmd/daemon/main.go",
"build:cli": "go build -o flux cmd/cli/main.go",
"run:daemon": "go run cmd/daemon/main.go",
"run:cli": "go run cmd/cli/main.go"
},
"pattern": "**/*.go",
"excluded_dirs": []
}