CrustyCookies/Types/DemoType.go

14 lines
163 B
Go
Raw Normal View History

2024-03-17 16:14:24 +01:00
package Types
type DemoType interface {
getName() string
}
type DemoTypeImpl struct {
name string
}
func (d DemoTypeImpl) getName() string {
return d.name
}