blob: 3cd483053538f3b53a096b68f9ac2fe03869104d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package tunnel
import (
"context"
"github.com/containers/libpod/pkg/domain/entities"
"github.com/pkg/errors"
)
func (ic *ContainerEngine) GenerateSystemd(ctx context.Context, nameOrID string, options entities.GenerateSystemdOptions) (*entities.GenerateSystemdReport, error) {
return nil, errors.New("not implemented for tunnel")
}
|