14 lines
210 B
Go
14 lines
210 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.GWCmd)
|
|
}
|