pgroll/pkg/state/errors.go
Philip Krauss 71d14ad513
License check in github actions (#123)
This PR adds a check to ensure a license declaration is present in the
file head of every `.go` file.
2023-09-22 10:31:49 +00:00

8 lines
133 B
Go

// SPDX-License-Identifier: Apache-2.0
package state
import "errors"
var ErrNoActiveMigration = errors.New("no active migration")