Skip to content

Commit

Permalink
chore: rm lint target
Browse files Browse the repository at this point in the history
  • Loading branch information
lvlcn-t committed Jul 29, 2024
1 parent fb63f12 commit 7743c36
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
.PHONY: examples
examples: custom-handler-example extension-example otel-example simple-example webserver-example

.PHONY: custom-handler-example
custom-handler-example:
@go run examples/custom-handler/main.go || true

.PHONY: extension-example
extension-example:
@go run examples/extension/main.go

.PHONY: otel-example
otel-example:
@go run examples/open-telemetry/main.go

.PHONY: simple-example
simple-example:
@go run examples/simple/main.go || true

.PHONY: webserver-example
webserver-example:
@echo "Open http://localhost:8080 in your browser to see the example.\nPress Ctrl+C to stop the server."
@go run examples/webserver/main.go

.PHONY: lint examples custom-handler-example extension-example otel-example simple-example webserver-example

0 comments on commit 7743c36

Please sign in to comment.