imagorvideoextended/cmd/imagorvideo/main.go
Failure f1dd9fc2ed
Some checks failed
docker / Docker (push) Has been cancelled
test / Docker Test (push) Has been cancelled
Merge branch 'github-master'
2025-12-06 17:14:52 -08:00

25 lines
599 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.Config,
imagorvideo.Config,
vipsconfig.WithVips,
awsconfig.WithAWS,
gcloudconfig.WithGCloud,
)
if server != nil {
server.Run()
}
}