22 lines
399 B
Go
22 lines
399 B
Go
|
package interact
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
var defaultInteraction = New()
|
||
|
|
||
|
func Default() *Interact {
|
||
|
return defaultInteraction
|
||
|
}
|
||
|
|
||
|
func AddMessenger(messenger Messenger) {
|
||
|
defaultInteraction.AddMessenger(messenger)
|
||
|
}
|
||
|
|
||
|
func AddCustomInteraction(custom CustomInteraction) {
|
||
|
defaultInteraction.AddCustomInteraction(custom)
|
||
|
}
|
||
|
|
||
|
func Start(ctx context.Context) error {
|
||
|
return defaultInteraction.Start(ctx)
|
||
|
}
|