This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2021-01-16 20:41:39 +00:00
|
|
|
package ak
|
|
|
|
|
|
|
|
type Outpost interface {
|
|
|
|
Start() error
|
|
|
|
Refresh() error
|
2021-08-21 14:17:30 +00:00
|
|
|
TimerFlowCacheExpiry()
|
2021-09-16 08:14:51 +00:00
|
|
|
Type() string
|
2021-01-16 20:41:39 +00:00
|
|
|
}
|