package graph import "errors" var ( ErrForbidden = errors.New("forbidden") ErrInvalidInput = errors.New("invalid input") )