Go does not allow type parameters (generics) in method declarations, and that limits the APIs you can make.
Here's an example when you might encou...
For further actions, you may consider blocking this person and/or reporting abuse
You can solve this by combining generics with interface within the connect method. This is more of a data issue and not implementation(generics) issue.
Hmm, I don't follow. Got an example?