Skip to content

Commit

Permalink
Move entry point of app to top level to make navigation easier (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomshutt authored Sep 8, 2022
1 parent 3f4614f commit 32697c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ all: build fmt test lint

.PHONY: build
build:
go build -ldflags="$(ldflags)" -o "$(GO_BUILD_DIR)catalyst-api" cmd/http-server.go
go build -ldflags="$(ldflags)" -o "$(GO_BUILD_DIR)catalyst-api" main.go

.PHONY: fmt
fmt:
Expand All @@ -19,7 +19,7 @@ lint:

.PHONY: run
run:
go run cmd/http-server.go
go run main.go

.PHONY: test
test:
Expand Down
File renamed without changes.

0 comments on commit 32697c2

Please sign in to comment.