14 lines
257 B
Go
14 lines
257 B
Go
|
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)
|
||
|
}
|