10 lines
205 B
Go
10 lines
205 B
Go
|
package contract
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
const DistributedKey = "hade:distributed"
|
||
|
|
||
|
type Distributed interface {
|
||
|
Select(serviceName string, appId string, holdTime time.Duration) (selectAppId string, err error)
|
||
|
}
|