Merge branch 'github-master'
Some checks failed
docker / Docker (push) Has been cancelled
test / Docker Test (push) Has been cancelled

This commit is contained in:
Failure 2025-12-06 17:14:52 -08:00
commit f1dd9fc2ed
167 changed files with 2002 additions and 513 deletions

View file

@ -1,26 +1,25 @@
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"
// 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()
}
var server = config.CreateServer(
os.Args[1:],
// imagorvideoextended.Config,
imagorvideo.Config,
vipsconfig.WithVips,
awsconfig.WithAWS,
gcloudconfig.WithGCloud,
)
if server != nil {
server.Run()
}
}