package command

import (
	"strings"
)

type BeginCommand struct {
	Meta
}

func (c *BeginCommand) Run(args []string) int {
	// Write your code here

	return 0
}

func (c *BeginCommand) Synopsis() string {
	return "Begin tutorial"
}

func (c *BeginCommand) Help() string {
	helpText := `
Begin resets the tutorial repo to the beginning. Note: The beginning may or may not be identical to the first step.
`
	return strings.TrimSpace(helpText)
}
