add license headers

sed -i '1i/*\nCopyright (c) Edgeless Systems GmbH\n\nSPDX-License-Identifier: AGPL-3.0-only\n*/\n' `grep -rL --include='*.go' 'DO NOT EDIT'`
gofumpt -w .
This commit is contained in:
Thomas Tendyck 2022-09-05 09:06:08 +02:00 committed by Thomas Tendyck
parent 95ff987bfc
commit bd63aa3c6b
478 changed files with 2868 additions and 0 deletions

View file

@ -1,3 +1,9 @@
/*
Copyright (c) Edgeless Systems GmbH
SPDX-License-Identifier: AGPL-3.0-only
*/
// Package poller implements a poller that can be used to wait for a condition to be met.
// The poller is designed to be a replacement for the azure-sdk-for-go poller
// with exponential backoff and an injectable clock.