mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-21 11:17:44 +08:00
10 lines
247 B
Go
10 lines
247 B
Go
package aws
|
|
|
|
// MissingRegionError is an error that is returned if region configuration
|
|
// value was not found.
|
|
type MissingRegionError struct{}
|
|
|
|
func (*MissingRegionError) Error() string {
|
|
return "an AWS region is required, but was not found"
|
|
}
|