mirror of
https://git.mirrors.martin98.com/https://github.com/ceph/ceph-csi.git
synced 2025-08-03 04:30:41 +08:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) from 1.38.63 to 1.40.34. - [Release notes](https://github.com/aws/aws-sdk-go/releases) - [Changelog](https://github.com/aws/aws-sdk-go/blob/main/CHANGELOG.md) - [Commits](https://github.com/aws/aws-sdk-go/compare/v1.38.63...v1.40.34) --- updated-dependencies: - dependency-name: github.com/aws/aws-sdk-go dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
12 lines
271 B
Go
12 lines
271 B
Go
//go:build !go1.7
|
|
// +build !go1.7
|
|
|
|
package sdkio
|
|
|
|
// Copy of Go 1.7 io package's Seeker constants.
|
|
const (
|
|
SeekStart = 0 // seek relative to the origin of the file
|
|
SeekCurrent = 1 // seek relative to the current offset
|
|
SeekEnd = 2 // seek relative to the end
|
|
)
|