2021-11-04 23:08:45 +00:00
|
|
|
// Copyright (C) 2021 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
2021-12-09 19:49:48 +00:00
|
|
|
//go:build !windows
|
|
|
|
// +build !windows
|
2021-11-04 23:08:45 +00:00
|
|
|
|
|
|
|
package main
|
|
|
|
|
2023-05-08 12:09:18 +01:00
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
|
|
|
|
func startAsService(*cobra.Command) bool {
|
2021-11-04 23:08:45 +00:00
|
|
|
return false
|
|
|
|
}
|