MCPcopy Create free account
hub / github.com/efficientgo/e2e / NewBigtable

Function NewBigtable

db/db.go:154–165  ·  view source on GitHub ↗
(env e2e.Environment, name string, opts ...Option)

Source from the content-addressed store, hash-verified

152}
153
154func NewBigtable(env e2e.Environment, name string, opts ...Option) e2e.Runnable {
155 o := options{image: "shopify/bigtable-emulator:0.1.0"}
156 for _, opt := range opts {
157 opt(&o)
158 }
159
160 return env.Runnable(name).Init(
161 e2e.StartOptions{
162 Image: o.image,
163 },
164 )
165}
166
167func NewCassandra(env e2e.Environment, name string, opts ...Option) *e2emon.InstrumentedRunnable {
168 o := options{image: "rinscy/cassandra:3.11.0"}

Callers

nothing calls this directly

Calls 3

InitMethod · 0.65
RunnableMethod · 0.65
optStruct · 0.50

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…