Skip to content
Open
7 changes: 3 additions & 4 deletions cmd/entire/cli/agent/agent_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,9 @@ func (m *mockAgent) SupportsHooks() bool { return false }
func (m *mockAgent) ParseHookInput(_ HookType, _ io.Reader) (*HookInput, error) {
return nil, nil
}
func (m *mockAgent) GetSessionID(_ *HookInput) string { return "" }
func (m *mockAgent) TransformSessionID(agentID string) string { return agentID }
func (m *mockAgent) ProtectedDirs() []string { return nil }
func (m *mockAgent) GetSessionDir(_ string) (string, error) { return "", nil }
func (m *mockAgent) GetSessionID(_ *HookInput) string { return "" }
func (m *mockAgent) ProtectedDirs() []string { return nil }
func (m *mockAgent) GetSessionDir(_ string) (string, error) { return "", nil }
func (m *mockAgent) ResolveSessionFile(sessionDir, agentSessionID string) string {
return sessionDir + "/" + agentSessionID + ".jsonl"
}
Expand Down
Loading