# What this PR does Support Slack team connector v2 introduced [here](https://github.com/grafana/oncall-gateway/pull/24)
11 lines
294 B
Python
11 lines
294 B
Python
"""
|
|
This package is for interaction with OnCall-Gateway, service to provide multiregional chatops.
|
|
"""
|
|
|
|
from .utils import ( # noqa: F401
|
|
check_slack_installation_possible,
|
|
create_oncall_connector,
|
|
create_slack_connector,
|
|
delete_oncall_connector,
|
|
delete_slack_connector,
|
|
)
|