All Downloads are FREE. Search and download functionalities are using the official Maven repository.

vendor.github.com.aws.aws-sdk-go-v2.internal.ini.token.go Maven / Gradle / Ivy

The newest version!
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() {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy