storj/cmd/identity/main.go

24 lines
337 B
Go
Raw Normal View History

// Copyright (C) 2018 Storj Labs, Inc.
// See LICENSE for copying information.
package main
import (
"github.com/spf13/cobra"
"storj.io/storj/pkg/process"
)
var (
rootCmd = &cobra.Command{
Use: "identity",
Short: "Identity management",
}
defaultConfDir = "$HOME/.storj/identity"
)
func main() {
process.Exec(rootCmd)
}