A CLI for tangled.sh
1package knit 2 3import "errors" 4 5// DefaultHost is the default host for tangled.sh services 6const DefaultHost = "tangled.sh" 7 8// DefaultKnot is the default knot host 9const DefaultKnot = "knot1.tangled.sh" 10 11// ErrRequiresAuth is returned when a command requires authentication but the 12// user has not authenticated with the host 13var ErrRequiresAuth = errors.New("authentication required")