mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-10-05 13:36:51 +08:00
18 lines
280 B
Go
18 lines
280 B
Go
package main
|
|
|
|
import (
|
|
"flag"
|
|
. "github.com/langhuihui/monibuca/monica"
|
|
_ "github.com/langhuihui/monibuca/plugins"
|
|
"log"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
log.SetOutput(os.Stdout)
|
|
configPath := flag.String("c", "config.toml", "configFile")
|
|
flag.Parse()
|
|
Run(*configPath)
|
|
select {}
|
|
}
|