fix: delete id in response

This commit is contained in:
2026-05-14 16:27:59 +03:00
parent 6046b8ae9d
commit b7893603ea
3 changed files with 10 additions and 13 deletions
+3 -5
View File
@@ -3,14 +3,12 @@ package domain
import "time"
type AgentRequest struct {
RequestID string
Name string
Args map[string]string
TimeOut int
Name string
Args map[string]string
TimeOut int
}
type AgentResponse struct {
RequestID string
Success bool
Output string
Error string