kaspad/main.go
2023-12-29 13:04:19 +01:00

19 lines
308 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/fabbez/topiad/app"
)
func main() {
if err := app.StartApp(); err != nil {
os.Exit(1)
}
}