Reduce changes needed to the template

I always end up making these changes each time I copy from the template.
This commit is contained in:
2022-06-12 13:37:24 -05:00
parent 6d3627e93b
commit bdd007bb4d

View File

@ -1,14 +1,16 @@
package days package days
import ( import (
"parnic.com/aoc2019/utilities" "fmt"
u "parnic.com/aoc2019/utilities"
) )
type DayTemplate struct { type DayTemplate struct {
} }
func (d *DayTemplate) Parse() { func (d *DayTemplate) Parse() {
utilities.GetIntLines("Templatep") u.GetIntLines("Templatep")
} }
func (d DayTemplate) Num() int { func (d DayTemplate) Num() int {
@ -16,9 +18,9 @@ func (d DayTemplate) Num() int {
} }
func (d *DayTemplate) Part1() string { func (d *DayTemplate) Part1() string {
return "" return fmt.Sprintf("%s%d%s", u.TextBold, 0, u.TextReset)
} }
func (d *DayTemplate) Part2() string { func (d *DayTemplate) Part2() string {
return "" return fmt.Sprintf("%s%d%s", u.TextBold, 0, u.TextReset)
} }