Satisfy the go linter

You just came up with this briliant go vars package. But dang, you forgot to add comments to the exported variables. Can you add a comment over each variable with a TODO-placeholder?

Input

package vars

var (
	Version string
	Debug bool
)

Output

package vars

var (
	// Version TODO
	Version string
	// Debug TODO
	Debug bool
)