mirror of
https://github.com/containers/podman.git
synced 2025-08-01 05:54:53 +08:00

Note: this makes info.go linux-only since it mixes linux-specific and generic code. This should be addressed in a separate refactoring PR. [NO NEW TESTS NEEDED] Signed-off-by: Doug Rabson <dfr@rabson.org>
15 lines
234 B
Go
15 lines
234 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
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")
|
|
}
|