MCPcopy Create free account
hub / github.com/compozy/agh / taskManager

Method taskManager

internal/extension/host_api_tasks.go:471–479  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

469}
470
471func (h *HostAPIHandler) taskManager() (hostAPITaskManager, error) {
472 if h == nil {
473 return nil, errors.New("extension: host api handler is required")
474 }
475 if h.tasks == nil {
476 return nil, errors.New("extension: task manager is not configured")
477 }
478 return h.tasks, nil
479}
480
481func (h *HostAPIHandler) taskObserver() (hostAPIObserver, error) {
482 if h == nil {

Calls

no outgoing calls