Interfaces
About
Creating
// Since it is not Uppercase, it is only available inside the package
type saver interface {
state bool
Save(int, string) error
}Interfaces with only one method
any interface
Using it
Embedded interfaces
Last updated