enhancement(search): add support for testcontainers to run local tests

This commit is contained in:
fschade
2025-08-28 09:32:26 +02:00
parent ad866b8ce3
commit ca0493b286
851 changed files with 111016 additions and 18 deletions
+18
View File
@@ -0,0 +1,18 @@
package testcontainers
import (
"context"
)
// ImageInfo represents summary information of an image
type ImageInfo struct {
ID string
Name string
}
// ImageProvider allows manipulating images
type ImageProvider interface {
ListImages(context.Context) ([]ImageInfo, error)
SaveImages(context.Context, string, ...string) error
PullImage(context.Context, string) error
}