keel/interfaces/namer.go
2023-09-08 22:24:31 +02:00

7 lines
79 B
Go

package interfaces
// Namer interface
type Namer interface {
Name() string
}