There was an error while loading. Please reload this page.
package main type MyType string func (t MyType) Get(key string) string { return "hello" } func main() { st := MyType("tag") st.Get("key") // <- unresolved Get }