mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-31 18:36:13 -05:00
24 lines
557 B
Go
24 lines
557 B
Go
|
/*
|
||
|
Copyright (c) Edgeless Systems GmbH
|
||
|
|
||
|
SPDX-License-Identifier: AGPL-3.0-only
|
||
|
*/
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/edgelesssys/constellation/v2/internal/api/attestationconfigapi"
|
||
|
"github.com/edgelesssys/constellation/v2/internal/file"
|
||
|
"github.com/edgelesssys/constellation/v2/internal/logger"
|
||
|
)
|
||
|
|
||
|
func uploadAWS(_ context.Context, _ *attestationconfigapi.Client, _ uploadConfig, _ file.Handler, _ *logger.Logger) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func deleteAWS(_ context.Context, _ *attestationconfigapi.Client, _ deleteConfig) error {
|
||
|
return nil
|
||
|
}
|