mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-05 16:35:45 +00:00
9 lines
170 B
Go
9 lines
170 B
Go
//go:build !static
|
|
// +build !static
|
|
|
|
package linkmode
|
|
|
|
// Linkmode returns the linking mode (static/dynamic) for the build.
|
|
func Linkmode() string {
|
|
return "dynamic"
|
|
}
|