refactor: update function signatures and improve code readability

This commit is contained in:
GitHub Actions
2025-12-31 21:29:53 +00:00
parent caeea504a5
commit 7524d4d3aa
7 changed files with 50 additions and 44 deletions

View File

@@ -31,7 +31,7 @@ func (m *mockStopExecutor) Stop(_ context.Context, _ string) error {
return m.stopErr
}
func (m *mockStopExecutor) Status(_ context.Context, _ string) (bool, int, error) {
func (m *mockStopExecutor) Status(_ context.Context, _ string) (running bool, pid int, err error) {
return false, 0, nil
}