| iomodo | b67a376 | 2025-07-25 20:27:04 +0400 | [diff] [blame] | 1 | package agent |
| 2 | |||||
| 3 | type AgentConfig struct { | ||||
| 4 | Name string | ||||
| 5 | Role string | ||||
| 6 | GitUsername string | ||||
| 7 | GitEmail string | ||||
| 8 | WorkingDir string | ||||
| 9 | } | ||||
| 10 | |||||
| 11 | type Agent struct { | ||||
| 12 | Config AgentConfig | ||||
| 13 | } | ||||
| 14 | |||||
| 15 | func NewAgent(config AgentConfig) *Agent { | ||||
| 16 | return &Agent{ | ||||
| 17 | Config: config, | ||||
| 18 | } | ||||
| 19 | } | ||||
| 20 | |||||
| 21 | func (a *Agent) Run() { | ||||
| 22 | |||||
| 23 | } | ||||