2019-01-24 20:15:10 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
2018-07-26 15:21:35 +01:00
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2018-09-07 16:01:04 +01:00
|
|
|
"storj.io/storj/cmd/uplink/cmd"
|
2018-07-26 15:21:35 +01:00
|
|
|
"storj.io/storj/pkg/process"
|
2018-07-30 08:38:31 +01:00
|
|
|
)
|
|
|
|
|
2018-07-26 15:21:35 +01:00
|
|
|
func main() {
|
2018-10-25 00:14:38 +01:00
|
|
|
process.Exec(cmd.CLICmd)
|
2018-07-26 15:21:35 +01:00
|
|
|
}
|