Method
Enable
(
ctx context.Context,
workspaceID string,
name string,
_ string,
)
Source from the content-addressed store, hash-verified
| 953 | } |
| 954 | |
| 955 | func (s daemonMemoryProviderService) Enable( |
| 956 | ctx context.Context, |
| 957 | workspaceID string, |
| 958 | name string, |
| 959 | _ string, |
| 960 | ) (contract.MemoryProviderLifecycleResponse, error) { |
| 961 | provider, err := s.Get(ctx, workspaceID, name) |
| 962 | return contract.MemoryProviderLifecycleResponse{Provider: provider, Changed: false}, err |
| 963 | } |
| 964 | |
| 965 | func (s daemonMemoryProviderService) Disable( |
| 966 | ctx context.Context, |
Callers
nothing calls this directly
Tested by
no test coverage detected