mirror of
https://github.com/humanlayer/humanlayer.git
synced 2025-08-20 19:01:22 +03:00
31 lines
971 B
Python
31 lines
971 B
Python
from humanlayer import ContactChannel, SlackContactChannel
|
|
|
|
dm_with_ceo = ContactChannel(
|
|
slack=SlackContactChannel(
|
|
channel_or_user_id="C07HR5JL15F",
|
|
context_about_channel_or_user="a DM with the ceo",
|
|
experimental_slack_blocks=True,
|
|
)
|
|
)
|
|
dm_with_head_of_marketing = ContactChannel(
|
|
slack=SlackContactChannel(
|
|
channel_or_user_id="C07H5RZMBK8",
|
|
context_about_channel_or_user="a DM with the head of marketing",
|
|
experimental_slack_blocks=True,
|
|
),
|
|
)
|
|
dm_with_summer_intern = ContactChannel(
|
|
slack=SlackContactChannel(
|
|
channel_or_user_id="C07H5S4E6EA",
|
|
context_about_channel_or_user="a DM with the summer intern",
|
|
experimental_slack_blocks=True,
|
|
),
|
|
)
|
|
channel_with_sre_team = ContactChannel(
|
|
slack=SlackContactChannel(
|
|
channel_or_user_id="C07HR5LJ0KT",
|
|
context_about_channel_or_user="a channel with the SRE team",
|
|
experimental_slack_blocks=True,
|
|
),
|
|
)
|