github.com/kata-containers/runtime@v0.0.0-20210505125100-04f29832a923/virtcontainers/kata_builtin_shim.go (about)

     1  // Copyright (c) 2018 HyperHQ Inc.
     2  //
     3  // SPDX-License-Identifier: Apache-2.0
     4  //
     5  
     6  package virtcontainers
     7  
     8  type kataBuiltInShim struct{}
     9  
    10  // start is the kataBuiltInShim start implementation for kata builtin shim.
    11  // It does nothing. The shim functionality is provided by the virtcontainers
    12  // library.
    13  func (s *kataBuiltInShim) start(sandbox *Sandbox, params ShimParams) (int, error) {
    14  	return -1, nil
    15  }