(ctx context.Context, sql string, arguments ...any)
| 932 | // in-transaction callers without duplicating the SQL. |
| 933 | type agentExecutor interface { |
| 934 | Exec(ctx context.Context, sql string, arguments ...any) (pgconn.CommandTag, error) |
| 935 | } |
| 936 | |
| 937 | func createAgent(ctx context.Context, exec agentExecutor, agentEmail, domain, name, userID string) (*AgentIdentity, error) { |
no outgoing calls