matterbridge/matterbridge.go

34 lines
720 B
Go
Raw Normal View History

2015-10-23 13:34:37 -07:00
package main
import (
2015-12-18 11:54:28 -08:00
"flag"
2016-06-23 11:31:12 -07:00
"fmt"
"github.com/42wim/matterbridge-plus/bridge"
log "github.com/Sirupsen/logrus"
2015-10-23 13:34:37 -07:00
)
2016-06-23 11:31:12 -07:00
var Version = "0.4.2"
func init() {
log.SetFormatter(&log.TextFormatter{FullTimestamp: true})
}
2015-10-23 13:34:37 -07:00
func main() {
2015-12-18 11:54:28 -08:00
flagConfig := flag.String("conf", "matterbridge.conf", "config file")
flagDebug := flag.Bool("debug", false, "enable debug")
2016-06-23 11:31:12 -07:00
flagVersion := flag.Bool("version", false, "show version")
flag.Parse()
if *flagVersion {
fmt.Println("Version:", Version)
return
}
2015-12-18 11:54:28 -08:00
flag.Parse()
if *flagDebug {
log.Info("enabling debug")
log.SetLevel(log.DebugLevel)
}
2016-06-23 11:31:12 -07:00
fmt.Println("running version", Version)
bridge.NewBridge("matterbot", bridge.NewConfig(*flagConfig), "legacy")
2015-10-23 13:34:37 -07:00
select {}
}