a9b32e2f97
add unbind flow execution Signed-off-by: Jens Langhammer <jens@goauthentik.io> Signed-off-by: Jens Langhammer <jens@goauthentik.io>
12 lines
157 B
Go
12 lines
157 B
Go
package ak
|
|
|
|
import "context"
|
|
|
|
type Outpost interface {
|
|
Start() error
|
|
Stop() error
|
|
Refresh() error
|
|
TimerFlowCacheExpiry(context.Context)
|
|
Type() string
|
|
}
|