From efaa37fda62256de64ba7eccd75f3be150f72b3c Mon Sep 17 00:00:00 2001 From: drew Date: Thu, 20 Aug 2026 00:18:36 +0300 Subject: [PATCH] first push over the public internet --- svc/handler.go | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 svc/handler.go diff --git a/svc/handler.go b/svc/handler.go new file mode 100644 index 0000000..a484f8a --- /dev/null +++ b/svc/handler.go @@ -0,0 +1,6 @@ +package svc + +// Handler is a real symbol so the graph has an edge to find. +func Handler(name string) string { return Format(name) } + +func Format(n string) string { return "svc:" + n }