()
| 183 | } |
| 184 | |
| 185 | func (tx *Tx) init() { |
| 186 | tx.APIToken = NewAPITokenClient(tx.config) |
| 187 | tx.Attestation = NewAttestationClient(tx.config) |
| 188 | tx.CASBackend = NewCASBackendClient(tx.config) |
| 189 | tx.CASMapping = NewCASMappingClient(tx.config) |
| 190 | tx.Group = NewGroupClient(tx.config) |
| 191 | tx.GroupMembership = NewGroupMembershipClient(tx.config) |
| 192 | tx.Integration = NewIntegrationClient(tx.config) |
| 193 | tx.IntegrationAttachment = NewIntegrationAttachmentClient(tx.config) |
| 194 | tx.Membership = NewMembershipClient(tx.config) |
| 195 | tx.OrgInvitation = NewOrgInvitationClient(tx.config) |
| 196 | tx.Organization = NewOrganizationClient(tx.config) |
| 197 | tx.Project = NewProjectClient(tx.config) |
| 198 | tx.ProjectVersion = NewProjectVersionClient(tx.config) |
| 199 | tx.Referrer = NewReferrerClient(tx.config) |
| 200 | tx.RobotAccount = NewRobotAccountClient(tx.config) |
| 201 | tx.User = NewUserClient(tx.config) |
| 202 | tx.Workflow = NewWorkflowClient(tx.config) |
| 203 | tx.WorkflowContract = NewWorkflowContractClient(tx.config) |
| 204 | tx.WorkflowContractVersion = NewWorkflowContractVersionClient(tx.config) |
| 205 | tx.WorkflowRun = NewWorkflowRunClient(tx.config) |
| 206 | } |
| 207 | |
| 208 | // txDriver wraps the given dialect.Tx with a nop dialect.Driver implementation. |
| 209 | // The idea is to support transactions without adding any extra code to the builders. |
no test coverage detected