Move into api routers instead of main

This commit is contained in:
2022-02-16 16:27:48 +01:00
parent f35f277b16
commit c3946df1ff
16 changed files with 561 additions and 358 deletions

View File

@@ -0,0 +1,16 @@
package dependencies
import (
"github.com/docker/docker/client"
"go.uber.org/zap"
)
func setupDocker(l *zap.Logger) *client.Client {
l.Info("Setting up Docker")
cli, err := client.NewClientWithOpts(client.FromEnv, client.WithAPIVersionNegotiation())
if err != nil {
panic(err)
}
return cli
}