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") }