Methods that customize the build are public, have a struct receiver and return a new Builder.
(v uuid.UUID)
| 152 | // Methods that customize the build are public, have a struct receiver and return a new Builder. |
| 153 | |
| 154 | func (b Builder) VersionID(v uuid.UUID) Builder { |
| 155 | // nolint: revive |
| 156 | b.version = versionTarget{specific: &v} |
| 157 | return b |
| 158 | } |
| 159 | |
| 160 | func (b Builder) ActiveVersion() Builder { |
| 161 | // nolint: revive |
no outgoing calls