/** # Copyright (c) 2024, HCUOpt CORPORATION. All rights reserved. **/ package containerd import ( "github.com/pelletier/go-toml" "dcu-container-toolkit/internal/logger" "dcu-container-toolkit/pkg/config/engine" ) // Config represents the containerd config type Config struct { *toml.Tree RuntimeType string UseDefaultRuntimeName bool ContainerAnnotations []string } var _ engine.Interface = (*Config)(nil) // New creates a containerd config with the specified options func New(opts ...Option) (engine.Interface, error) { b := &builder{} for _, opt := range opts { opt(b) } if b.logger == nil { b.logger = logger.New() } return b.build() }