.PHONY: build
build:
	cargo build

.PHONY: fmt
fmt:
	cargo fmt

.PHONY: clippy
clippy:
	cargo clippy

.PHONY: run
run:
	cargo build
	sudo ../target/debug/hanteker_backend

