5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-19 01:49:35 +00:00
matterbridge/matterbridge.go

24 lines
509 B
Go
Raw Normal View History

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