package domain import "errors" var ( ErrNoteNotFound = errors.New("note not found") ErrNoteAlreadyExists = errors.New("note already exists") ErrInvalidPath = errors.New("invalid path") ErrEmptyContent = errors.New("content cannot be empty") ErrInvalidTag = errors.New("invalid tag format") ErrCircularLink = errors.New("circular link detected") )