mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-12 19:32:48 -06:00
e2297a7833
- Updated source code layout to use standard Go project structure. - Makefile for build and test execution. - Glide for dependency management. - Integrated spf13/cobra for command line entry point. - Added docs on release and development process.
16 lines
403 B
Go
16 lines
403 B
Go
// Copyright 2016 The OPA Authors. All rights reserved.
|
|
// Use of this source code is governed by an Apache2
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package cmd
|
|
|
|
import "github.com/spf13/cobra"
|
|
import "path"
|
|
import "os"
|
|
|
|
var RootCommand = &cobra.Command{
|
|
Use: path.Base(os.Args[0]),
|
|
Short: "Open Policy Agent (OPA)",
|
|
Long: "An open source project to policy enable any application.",
|
|
}
|