Review #3 comment: domain package shouldn't depend on any other package. Replace common/errors.ErrNotImplemented alias with stdlib errors.New so domain has zero internal dependencies.
7 lines
175 B
Go
7 lines
175 B
Go
package domain
|
|
|
|
import "errors"
|
|
|
|
// ErrNotImplemented is returned by interface stubs that have not been implemented yet.
|
|
var ErrNotImplemented = errors.New("not implemented")
|