Source code for ralph.mcp.tools._git_log_params

"""GitLogParams dataclass for the git log MCP tool."""

from __future__ import annotations

from dataclasses import dataclass


[docs] @dataclass(frozen=True) class GitLogParams: """Parsed parameters for the git log tool.""" count: int