go-zero/core/naming/namer.go

7 lines
98 B
Go
Raw Normal View History

2020-07-26 17:09:05 +08:00
package naming
2021-02-08 21:31:56 +08:00
// Namer interface wraps the method Name.
2020-07-26 17:09:05 +08:00
type Namer interface {
Name() string
}