app_push.go 231 B

1234567891011
  1. package v2
  2. import "context"
  3. // AppPushInput is the input to the AppPush function
  4. type AppPushInput struct{}
  5. // AppPush pushes an app to a remote registry
  6. func AppPush(ctx context.Context, inp AppPushInput) error {
  7. return nil
  8. }