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