10 lines
174 B
Makefile
10 lines
174 B
Makefile
# 开发:热重载(需先安装 air: go install github.com/air-verse/air@latest)
|
||
dev:
|
||
air
|
||
|
||
# 普通运行(无热重载)
|
||
run:
|
||
go run ./cmd/server
|
||
|
||
.PHONY: dev run
|