(ctx context.Context, version string)
| 22 | type contextKeyAPIVersion struct{} |
| 23 | |
| 24 | func WithAPIVersion(ctx context.Context, version string) context.Context { |
| 25 | return context.WithValue(ctx, contextKeyAPIVersion{}, version) |
| 26 | } |
| 27 | |
| 28 | type LifecycleAPI struct { |
| 29 | AgentFn func(context.Context) (database.WorkspaceAgent, error) |
no outgoing calls