11 lines
158 B
Go
11 lines
158 B
Go
|
// Copyright (C) 2021 Storj Labs, Inc.
|
||
|
// See LICENSE for copying information.
|
||
|
|
||
|
//+build !windows
|
||
|
|
||
|
package main
|
||
|
|
||
|
func startAsService() bool {
|
||
|
return false
|
||
|
}
|