MCPcopy Create free account
hub / github.com/golang/appengine / Start

Function Start

module/module.go:90–100  ·  view source on GitHub ↗

Start starts the specified version of the specified module. If either module or version are the empty string, it means the default.

(c context.Context, module, version string)

Source from the content-addressed store, hash-verified

88// Start starts the specified version of the specified module.
89// If either module or version are the empty string, it means the default.
90func Start(c context.Context, module, version string) error {
91 req := &pb.StartModuleRequest{}
92 if module != "" {
93 req.Module = &module
94 }
95 if version != "" {
96 req.Version = &version
97 }
98 res := &pb.StartModuleResponse{}
99 return internal.Call(c, "modules", "StartModule", req, res)
100}
101
102// Stop stops the specified version of the specified module.
103// If either module or version are the empty string, it means the default.

Callers 1

TestStartFunction · 0.70

Calls 1

CallFunction · 0.92

Tested by 1

TestStartFunction · 0.56

Used in the wild real call sites across dependent graphs

searching dependent graphs…