capsule AI-native Unix-like composition layer

src/server/internal/orchestrator/errors.go

230 bytes · 10 lines · capsule://quake0day/[email protected] raw on github

package orchestrator

import "errors"

var (
	ErrMaxSessions    = errors.New("maximum concurrent sessions reached")
	ErrSessionExists  = errors.New("session already exists")
	ErrSessionNotFound = errors.New("session not found")
)