Implement Phase 0

This commit is contained in:
2025-10-09 18:50:51 -04:00
parent 7ef57642cc
commit f444113057
10 changed files with 1104 additions and 0 deletions

16
Makefile Normal file
View File

@ -0,0 +1,16 @@
# Makefile for Onyx
.PHONY: build test clean install
build:
go build -o bin/onx ./cmd/onx
go build -o bin/onxd ./cmd/onxd
test:
go test -v ./...
install:
go install ./cmd/onx
go install ./cmd/onxd
clean:
rm -rf bin/