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