27c6c6aeae
Co-authored-by: Stefan Benten <mail@stefan-benten.de>
14 lines
208 B
Go
14 lines
208 B
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
//go:build !windows
|
|
// +build !windows
|
|
|
|
package main
|
|
|
|
import "storj.io/private/process"
|
|
|
|
func main() {
|
|
process.Exec(rootCmd)
|
|
}
|