2021-01-04 19:43:19 +00:00
|
|
|
package daemon
|
|
|
|
|
|
|
|
import (
|
2023-02-17 19:12:06 +00:00
|
|
|
"errors"
|
2022-08-17 21:13:49 +00:00
|
|
|
|
|
|
|
"github.com/docker/docker/daemon/config"
|
2021-01-04 19:43:19 +00:00
|
|
|
)
|
|
|
|
|
2022-08-17 21:13:49 +00:00
|
|
|
func (daemon *Daemon) getRuntime(cfg *config.Config, name string) (shim string, opts interface{}, err error) {
|
2023-02-17 19:12:06 +00:00
|
|
|
return "", nil, errors.New("not implemented")
|
2021-01-04 19:43:19 +00:00
|
|
|
}
|