diff --git a/chrysom/acquire.go b/chrysom/acquire.go new file mode 100644 index 0000000..b8f139a --- /dev/null +++ b/chrysom/acquire.go @@ -0,0 +1,9 @@ +// SPDX-FileCopyrightText: 2024 Comcast Cable Communications Management, LLC +// SPDX-License-Identifier: Apache-2.0 + +package chrysom + +// Acquirer adds an authorization header and value to a given http request. +type Acquirer interface { + Acquire() (string, error) +}