15 lines
286 B
Python
15 lines
286 B
Python
from arcade_zendesk.tools import (
|
|
add_ticket_comment,
|
|
get_ticket_comments,
|
|
list_tickets,
|
|
mark_ticket_solved,
|
|
search_articles,
|
|
)
|
|
|
|
__all__ = [
|
|
"list_tickets",
|
|
"add_ticket_comment",
|
|
"get_ticket_comments",
|
|
"mark_ticket_solved",
|
|
"search_articles",
|
|
]
|