14 lines
305 B
Python
14 lines
305 B
Python
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
from enum import StrEnum
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
class Capability(StrEnum):
|
||
|
|
READ_REPOSITORY = "read_repository"
|
||
|
|
WRITE_WORKTREE = "write_worktree"
|
||
|
|
RUN_TESTS = "run_tests"
|
||
|
|
CREATE_BRANCH = "create_branch"
|
||
|
|
COMMIT_CHANGES = "commit_changes"
|
||
|
|
BROWSER_TEST = "browser_test"
|