github.com/cnboonhan/delve@v0.0.0-20230908061759-363f2388c2fb/_fixtures/internal/pluginsupport/pluginsupport.go (about) 1 package pluginsupport 2 3 type Something interface { 4 Callback(int) int 5 } 6 7 type SomethingElse interface { 8 Callback2(int, int) float64 9 }