mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-03-30 15:08:33 +00:00

* [NOD-1420] Moved setting limits to executor * [NOD-1420] Moved all code dealing with windows service to separate package * [NOD-1420] Move practically all main to restructured app package * [NOD-1420] Check for running as interactive only after checking if we are doing any service operation * [NOD-1420] Add comments * [NOD-1420] Add a comment
19 lines
310 B
Go
19 lines
310 B
Go
// Copyright (c) 2013-2016 The btcsuite developers
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
import (
|
|
_ "net/http/pprof"
|
|
"os"
|
|
|
|
"github.com/kaspanet/kaspad/app"
|
|
)
|
|
|
|
func main() {
|
|
if err := app.StartApp(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|