1 2 3 4 5 6 7 8 9 10 11 12 13 14
// +build !ABISupport,!remote package system import ( "errors" "github.com/containers/libpod/pkg/domain/entities" "github.com/spf13/pflag" ) func restService(opts entities.ServiceOptions, flags *pflag.FlagSet, cfg *entities.PodmanConfig) error { return errors.New("not supported") }