6 lines
162 B
Python
6 lines
162 B
Python
"""Gitea issue/PR comment tool. Phase 2 implementation."""
|
|
|
|
|
|
def gitea_comment(message: str, issue_number: int) -> dict:
|
|
raise NotImplementedError("Phase 2")
|