(cmd *cobra.Command, args []string)
| 72 | } |
| 73 | |
| 74 | func (h *MigrateHandler) MigrateStatus(cmd *cobra.Command, args []string) error { |
| 75 | p, err := h.makeMigrationManager(cmd, args) |
| 76 | if err != nil { |
| 77 | return err |
| 78 | } |
| 79 | return popx.MigrateStatus(cmd, p) |
| 80 | } |
nothing calls this directly
no test coverage detected