mirror of
https://github.com/lightninglabs/loop
synced 2024-11-09 19:10:47 +00:00
18 lines
231 B
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)
|
|
}
|
|
}
|