All checks were successful
Check / check (pull_request) Successful in 11m40s
- ImageID + ContainerID → internal/docker/types.go - UnparsedURL → internal/service/webhook/types.go - Delete internal/domain/ entirely - Update all imports throughout the codebase
14 lines
379 B
Go
14 lines
379 B
Go
package docker
|
|
|
|
// ImageID is a Docker image identifier (ID or tag).
|
|
type ImageID string
|
|
|
|
// String implements the fmt.Stringer interface.
|
|
func (id ImageID) String() string { return string(id) }
|
|
|
|
// ContainerID is a Docker container identifier.
|
|
type ContainerID string
|
|
|
|
// String implements the fmt.Stringer interface.
|
|
func (id ContainerID) String() string { return string(id) }
|