remove addr, pubKey fields from agent struct

This commit is contained in:
Henry Dollman
2024-09-28 16:48:55 -04:00
parent 5e97167ee0
commit 2ecf5572ba
2 changed files with 4 additions and 8 deletions

View File

@@ -38,5 +38,5 @@ func main() {
addr = portEnvVar
}
agent.NewAgent(pubKey, addr).Run()
agent.NewAgent().Run(pubKey, addr)
}