summaryrefslogtreecommitdiffstats
path: root/matterbridge.go
blob: 5e0ed2d68a6f433851607963436bd8266735d10d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package main

import (
	"flag"
	"github.com/42wim/matterbridge-plus/bridge"
	log "github.com/Sirupsen/logrus"
)

func init() {
	log.SetFormatter(&log.TextFormatter{FullTimestamp: true})
}

func main() {
	flagConfig := flag.String("conf", "matterbridge.conf", "config file")
	flagDebug := flag.Bool("debug", false, "enable debug")
	flag.Parse()
	if *flagDebug {
		log.Info("enabling debug")
		log.SetLevel(log.DebugLevel)
	}
	bridge.NewBridge("matterbot", bridge.NewConfig(*flagConfig), "legacy")
	select {}
}