I have interface:
type MyInterface interface {
...
}
and I want to mark that my struct implements it. I think it is not possible in go, but I want to be certain.
I did the following, but I think it results in an anonymous variable that implements interface. Am I right?
type MyStruct struct {
...
MyInterface
}