mirror of
https://github.com/Jguer/yay.git
synced 2024-11-07 17:47:21 +01:00
10 lines
248 B
Go
10 lines
248 B
Go
package topo
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrSelfReferential = errors.New("self-referential dependencies not allowed")
|
|
ErrConflictingAlias = errors.New("alias already defined")
|
|
ErrCircular = errors.New("circular dependencies not allowed")
|
|
)
|