mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 09:17:49 +08:00

vendor github.com/aws/aws-sdk-go-v2/config v1.26.6 and related dependencies. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
33 lines
481 B
Go
33 lines
481 B
Go
package ini
|
|
|
|
type lineToken interface {
|
|
isLineToken()
|
|
}
|
|
|
|
type lineTokenProfile struct {
|
|
Type string
|
|
Name string
|
|
}
|
|
|
|
func (*lineTokenProfile) isLineToken() {}
|
|
|
|
type lineTokenProperty struct {
|
|
Key string
|
|
Value string
|
|
}
|
|
|
|
func (*lineTokenProperty) isLineToken() {}
|
|
|
|
type lineTokenContinuation struct {
|
|
Value string
|
|
}
|
|
|
|
func (*lineTokenContinuation) isLineToken() {}
|
|
|
|
type lineTokenSubProperty struct {
|
|
Key string
|
|
Value string
|
|
}
|
|
|
|
func (*lineTokenSubProperty) isLineToken() {}
|