mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
14 lines
150 B
Go
14 lines
150 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/lightninglabs/loop/loopd"
|
|
)
|
|
|
|
func main() {
|
|
err := loopd.Start()
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
}
|
|
}
|