storj/cmd/storagenode/service_nonwindows.go
Egon Elbre e721081354 cmd/storagenode: fix service initialization code
func init() code isn't that well defined and reordering of them
could cause problems when starting the whole process from it.

Change-Id: I4088a0db156ece15354877011a481f6f91c9b332
2021-11-05 01:09:41 +02:00

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
}