smoke: a symbol worth indexing

This commit is contained in:
smoke
2026-08-19 16:40:57 -04:00
parent 2490dd1a66
commit c44deeb121
+6
View File
@@ -0,0 +1,6 @@
package pkg
// Greet is here so the indexer has a real symbol to find.
func Greet(name string) string { return "hello, " + name }
func Caller() string { return Greet("gitsrv") }