AB#2474 Implement List and Self method for AWS (#229)

Signed-off-by: Daniel Weiße <dw@edgeless.systems>
This commit is contained in:
Daniel Weiße 2022-10-12 13:40:38 +02:00 committed by GitHub
parent dbd71eebd9
commit 23afccb975
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 944 additions and 2 deletions

View file

@ -0,0 +1,25 @@
/*
Copyright (c) Edgeless Systems GmbH
SPDX-License-Identifier: AGPL-3.0-only
*/
package aws
// TODO: Implement for AWS.
// Logger is a Cloud Logger for AWS.
type Logger struct{}
// NewLogger creates a new Cloud Logger for AWS.
func NewLogger() *Logger {
return &Logger{}
}
// Disclose is not implemented for AWS.
func (l *Logger) Disclose(msg string) {}
// Close is a no-op.
func (l *Logger) Close() error {
return nil
}