package command

import (
	"strings"
)

type GotoCommand struct {
	Meta
}

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

	return 0
}

func (c *GotoCommand) Synopsis() string {
	return "Go to step <n>"
}

func (c *GotoCommand) Help() string {
	helpText := `

`
	return strings.TrimSpace(helpText)
}
