imagorvideoextended/cmd/imagorvideo/main.go
Failure f348bb92e3
Some checks are pending
docker / Docker (push) Waiting to run
test / Test (push) Waiting to run
remove video specific stuff, base off of video, and add support for HTML
2024-07-30 02:34:01 -07:00

25 lines
518 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()
}
}