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