package app import ( "context" "forge.cadoles.com/arcad/edge/pkg/app" ) type Repository interface { List(context.Context) ([]*app.Manifest, error) Get(context.Context, app.ID) (*app.Manifest, error) GetURL(context.Context, app.ID) (string, error) }