Files
mire/cmd/test.go
2026-03-19 20:15:11 +00:00

18 lines
262 B
Go

package cmd
import (
"miro/internal/miro"
"github.com/spf13/cobra"
)
func newTestCommand() *cobra.Command {
return &cobra.Command{
Use: "test",
Args: cobra.NoArgs,
RunE: func(_ *cobra.Command, _ []string) error {
return miro.RunTests()
},
}
}