grim/convey

Fix some minor linting issues

5 months ago, Elliott Sales de Andrade
62cc853bf396
Fix some minor linting issues

Testing Done:
Ran `golint`, saw fewer lints, and ran `go build .`

Reviewed at https://reviews.imfreedom.org/r/2869/
package podman
import (
"errors"
)
var (
// common errors
ErrNoImage = errors.New("no image specified")
// build errors
ErrNoContainerfile = errors.New("no container file specified")
ErrContextOutsideOfWorkspace = errors.New("context is outside of the workspace")
// login/logout errors
ErrNoRegistry = errors.New("no registry specified")
ErrNoUsername = errors.New("no username provided")
ErrNoPassword = errors.New("no password provided")
// pull/push errors
ErrNoTags = errors.New("no tags specified")
// tag errors
ErrNoTargets = errors.New("no targets specified")
)