mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-10-22 12:29:49 +00:00
Many cli and arch files were using the 'older style' fairly full Apache license text. The project standard is the shorter SPDX style. Convert them over. Fixes: #225 Signed-off-by: Graham whaley <graham.whaley@intel.com>
20 lines
321 B
Go
20 lines
321 B
Go
// Copyright (c) 2017 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
var versionCLICommand = cli.Command{
|
|
Name: "version",
|
|
Usage: "display version details",
|
|
Action: func(context *cli.Context) error {
|
|
cli.VersionPrinter(context)
|
|
return nil
|
|
},
|
|
}
|