mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-04-14 04:17:36 -04:00
Bumps [github.com/testcontainers/testcontainers-go](https://github.com/testcontainers/testcontainers-go) from 0.40.0 to 0.41.0. - [Release notes](https://github.com/testcontainers/testcontainers-go/releases) - [Commits](https://github.com/testcontainers/testcontainers-go/compare/v0.40.0...v0.41.0) --- updated-dependencies: - dependency-name: github.com/testcontainers/testcontainers-go dependency-version: 0.41.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
18 lines
410 B
Go
18 lines
410 B
Go
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-FileCopyrightText: 2023 The Ebitengine Authors
|
|
|
|
//go:build darwin || freebsd || linux || netbsd
|
|
|
|
package purego
|
|
|
|
// Dlerror represents an error value returned from Dlopen, Dlsym, or Dlclose.
|
|
//
|
|
// This type is not available on Windows as there is no counterpart to it on Windows.
|
|
type Dlerror struct {
|
|
s string
|
|
}
|
|
|
|
func (e Dlerror) Error() string {
|
|
return e.s
|
|
}
|