(url string)
| 584 | type aiTemplateOpt func(*aiTemplateOpts) |
| 585 | |
| 586 | func withSidebarURL(url string) aiTemplateOpt { |
| 587 | return func(o *aiTemplateOpts) { o.appURL = url } |
| 588 | } |
| 589 | |
| 590 | func withAgentToken(token string) aiTemplateOpt { |
| 591 | return func(o *aiTemplateOpts) { o.authToken = token } |
no outgoing calls
no test coverage detected