mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-09 09:24:24 +01:00
When imported, the vc files carried in the 'full style' apache license text, but the standard for kata is to use SPDX style. Update the relevant files to SPDX. Fixes: #227 Signed-off-by: Graham whaley <graham.whaley@intel.com>
22 lines
364 B
Go
22 lines
364 B
Go
// Copyright (c) 2017 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/kata-containers/runtime/virtcontainers/pkg/mock"
|
|
)
|
|
|
|
func main() {
|
|
config := mock.ShimMockConfig{
|
|
Name: "cc-shim",
|
|
URLParamName: "u",
|
|
ContainerParamName: "c",
|
|
TokenParamName: "t",
|
|
}
|
|
|
|
mock.StartShim(config)
|
|
}
|