kaspad/main.go
2023-08-23 15:18:10 +09:00

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