From 7743c3632b753e2ab603808dd0b6c3329d083aba Mon Sep 17 00:00:00 2001 From: lvlcn-t <75443136+lvlcn-t@users.noreply.github.com> Date: Mon, 29 Jul 2024 20:29:36 +0200 Subject: [PATCH] chore: rm lint target --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 70b44f0..a03da7f 100644 --- a/Makefile +++ b/Makefile @@ -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 \ No newline at end of file