(ctx context.Context, c meta.Meta)
| 128 | } |
| 129 | |
| 130 | func CleanUpWorkspace(ctx context.Context, c meta.Meta) tea.Cmd { |
| 131 | return func() tea.Msg { |
| 132 | if err := c.CleanUpWorkspace(ctx); err != nil { |
| 133 | return ErrMsg(err) |
| 134 | } |
| 135 | return WorkspaceCleanupDoneMsg{} |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | func PushState(ctx context.Context, c meta.Meta, l meta.ImportList) tea.Cmd { |
| 140 | return func() tea.Msg { |
no test coverage detected