8f3398b349
also remove testing package from import dependency chain (testing defines some flags)
14 lines
212 B
Go
14 lines
212 B
Go
// Copyright (C) 2018 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package main
|
|
|
|
import (
|
|
"storj.io/storj/cmd/uplink/cmd"
|
|
"storj.io/storj/pkg/process"
|
|
)
|
|
|
|
func main() {
|
|
process.Exec(cmd.RootCmd)
|
|
}
|