namer.go 98 B

123456
  1. package naming
  2. // Namer interface wraps the method Name.
  3. type Namer interface {
  4. Name() string
  5. }