mirror of
https://github.com/containers/podman.git
synced 2025-05-17 23:26:08 +08:00

We do not support using the libpod package outside of podman. There is no stable interface which can be used. Instead point users to the API and go bindings. Fixes #13086 Signed-off-by: Paul Holzinger <pholzing@redhat.com>
12 lines
578 B
Go
12 lines
578 B
Go
// The libpod library is not stable and we do not support use cases outside of
|
|
// this repository. The API can change at any time even with patch releases.
|
|
//
|
|
// If you need a stable interface Podman provides a HTTP API which follows semver,
|
|
// please see https://docs.podman.io/en/latest/markdown/podman-system-service.1.html
|
|
// to start the api service and https://docs.podman.io/en/latest/_static/api.html
|
|
// for the API reference.
|
|
//
|
|
// We also provide stable go bindings to talk to the api service from another go
|
|
// program, see the pkg/bindings directory.
|
|
package libpod
|