mirror of
https://github.com/containers/podman.git
synced 2025-05-18 07:36:21 +08:00
9 lines
150 B
Go
9 lines
150 B
Go
//go:build static
|
|
|
|
package linkmode
|
|
|
|
// Linkmode returns the linking mode (static/dynamic) for the build.
|
|
func Linkmode() string {
|
|
return "static"
|
|
}
|