383cb05e8e
* Divide uplink and gateway params set * attempt to fix docker * attempt to fix all in one * test * more reorganization * fix compilation error * fix imports order * fix dependency * rename structs * keep minio params for now * review comments * remove manual flag check
14 lines
212 B
Go
14 lines
212 B
Go
// Copyright (C) 2019 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)
|
|
}
|