Reorganized directories and packages.

This commit is contained in:
mikestefanello 2022-11-02 19:23:26 -04:00
parent 965fb540c7
commit dceb232cb2
61 changed files with 83 additions and 83 deletions

View file

@ -49,7 +49,7 @@ reset:
.PHONY: run
run:
clear
go run main.go
go run cmd/web/main.go
# Run all tests
.PHONY: test
@ -60,7 +60,7 @@ test:
.PHONY: worker
worker:
clear
go run worker/worker.go
go run cmd/worker/worker.go
# Check for direct dependency updates
.PHONY: check-updates