imagorvideoextended/cmd/imagorvideo/main.go
Failure 17d4d46d09
Some checks failed
docker / Docker (push) Has been cancelled
test / Test (push) Has been cancelled
youtube handling + special site handling framework
2024-08-06 08:50:35 -07:00

26 lines
556 B
Go

package main
import (
imagorvideoextended "git.cef.icu/CEF/imagorextended"
"github.com/cshum/imagor/config"
"github.com/cshum/imagor/config/awsconfig"
"github.com/cshum/imagor/config/gcloudconfig"
"github.com/cshum/imagor/config/vipsconfig"
"github.com/cshum/imagorvideo"
"os"
)
func main() {
var server = config.CreateServer(
os.Args[1:],
//imagorvideoextended.LoaderConfig,
imagorvideoextended.Config,
imagorvideo.Config,
vipsconfig.WithVips,
awsconfig.WithAWS,
gcloudconfig.WithGCloud,
)
if server != nil {
server.Run()
}
}