You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
loop/cmd/loopd/main.go

18 lines
231 B
Go

package main
import (
"fmt"
"os"
"github.com/lightninglabs/loop/loopd"
)
func main() {
cfg := loopd.RPCConfig{}
err := loopd.Run(cfg)
if err != nil {
fmt.Printf("loopd exited with an error: %v\n", err)
os.Exit(1)
}
}