Creator is the interface that wraps the Create method. Create stores the release or returns ErrReleaseExists if an identical release already exists.
| 59 | // Create stores the release or returns ErrReleaseExists |
| 60 | // if an identical release already exists. |
| 61 | type Creator interface { |
| 62 | Create(key string, rls release.Releaser) error |
| 63 | } |
| 64 | |
| 65 | // Updator is the interface that wraps the Update method. |
| 66 | // |
no outgoing calls
no test coverage detected
searching dependent graphs…