go-zero/core/naming/namer.go
2021-02-08 21:31:56 +08:00

7 lines
98 B
Go

package naming
// Namer interface wraps the method Name.
type Namer interface {
Name() string
}