diff --git a/days/template.go b/days/template.go new file mode 100644 index 0000000..1550b52 --- /dev/null +++ b/days/template.go @@ -0,0 +1,24 @@ +package days + +import ( + "parnic.com/aoc2019/utilities" +) + +type DayTemplate struct { +} + +func (d *DayTemplate) Parse() { + utilities.GetIntLines("Templatep") +} + +func (d DayTemplate) Num() int { + return -1 +} + +func (d *DayTemplate) Part1() string { + return "" +} + +func (d *DayTemplate) Part2() string { + return "" +}