Files
crawlab/core/interfaces/address.go
2024-06-14 15:42:50 +08:00

8 lines
88 B
Go

package interfaces
type Address interface {
Entity
String() string
IsEmpty() bool
}