// Package open implements the public open API (/api/open/v1). // These controllers are thin adapters over the common/tools Go packages and // require no authentication. Each sub-feature lives in its own file here, // mirroring api/open/v1/tools//index.go. package open // Controller implements the /api/open/v1 endpoints. type Controller struct{} // New creates an open API controller. func New() *Controller { return &Controller{} }