Files
public-drive/svc/handler.go
T

7 lines
184 B
Go

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 }