mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-09 16:50:30 +00:00
Add option to specify configfile
This commit is contained in:
parent
bdac03f725
commit
f0a5d2396f
@ -2,6 +2,7 @@ package main
|
||||
|
||||
import (
|
||||
"crypto/tls"
|
||||
"flag"
|
||||
"github.com/42wim/matterbridge/matterhook"
|
||||
"github.com/peterhellberg/giphy"
|
||||
"github.com/thoj/go-ircevent"
|
||||
@ -116,6 +117,8 @@ func (b *Bridge) giphyRandom(query []string) string {
|
||||
}
|
||||
|
||||
func main() {
|
||||
NewBridge("matterbot", NewConfig("matterbridge.conf"))
|
||||
flagConfig := flag.String("conf", "matterbridge.conf", "config file")
|
||||
flag.Parse()
|
||||
NewBridge("matterbot", NewConfig(*flagConfig))
|
||||
select {}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user