mirror of
https://github.com/containers/podman.git
synced 2026-07-10 07:15:05 -04:00
The podman module paths are moving from github.com/containers/podman to go.podman.io/podman. This will help with future mobility. Signed-off-by: Brent Baude <bbaude@redhat.com>
12 lines
121 B
Go
12 lines
121 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"go.podman.io/podman/v6/version"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Print(version.Version.String())
|
|
}
|