mirror of
https://github.com/LBRYFoundation/reflector.go.git
synced 2025-08-23 09:17:24 +00:00
15 lines
237 B
Go
15 lines
237 B
Go
package main
|
|
|
|
import (
|
|
"github.com/lbryio/reflector.go/cmd"
|
|
|
|
"github.com/google/gops/agent"
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func main() {
|
|
if err := agent.Listen(agent.Options{}); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
cmd.Execute()
|
|
}
|