matterbridge/matterbridge.go

39 строки
893 B
Go
Исходник Обычный вид История

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