Flamenco/main.go
2022-01-03 19:51:22 +01:00

23 lines
471 B
Go

package main
import (
"time"
"github.com/mattn/go-colorable"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
"stuvel.eu/flamenco-test/goja/job_compilers"
)
func main() {
output := zerolog.ConsoleWriter{Out: colorable.NewColorableStdout(), TimeFormat: time.RFC3339}
log.Logger = log.Output(output)
compiler, err := job_compilers.Load()
if err != nil {
log.Fatal().Err(err).Msg("error loading job compilers")
}
compiler.Run("simple-blender-render")
}