mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-23 09:00:20 +08:00
7 lines
98 B
Go
7 lines
98 B
Go
package naming
|
|
|
|
// Namer interface wraps the method Name.
|
|
type Namer interface {
|
|
Name() string
|
|
}
|