matterbridge/matterbridge.go

24 lines
509 B
Go
Raw Normal View History

2015-10-23 22:34:37 +02:00
package main
import (
2015-12-18 20:54:28 +01:00
"flag"
"github.com/42wim/matterbridge-plus/bridge"
log "github.com/Sirupsen/logrus"
2015-10-23 22:34:37 +02:00
)
func init() {
log.SetFormatter(&log.TextFormatter{FullTimestamp: true})
}
2015-10-23 22:34:37 +02:00
func main() {
2015-12-18 20:54:28 +01:00
flagConfig := flag.String("conf", "matterbridge.conf", "config file")
flagDebug := flag.Bool("debug", false, "enable debug")
2015-12-18 20:54:28 +01:00
flag.Parse()
if *flagDebug {
log.Info("enabling debug")
log.SetLevel(log.DebugLevel)
}
bridge.NewBridge("matterbot", bridge.NewConfig(*flagConfig), "legacy")
2015-10-23 22:34:37 +02:00
select {}
}