mirror of
https://github.com/containers/podman.git
synced 2025-05-20 00:27:03 +08:00
15 lines
255 B
Go
15 lines
255 B
Go
//go:build !linux && !freebsd
|
|
// +build !linux,!freebsd
|
|
|
|
package libpod
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/containers/podman/v4/libpod/define"
|
|
)
|
|
|
|
func (r *Runtime) info() (*define.Info, error) {
|
|
return nil, errors.New("not implemented (*Runtime) info")
|
|
}
|