Add new day template
This commit is contained in:
24
days/template.go
Normal file
24
days/template.go
Normal file
@ -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 ""
|
||||||
|
}
|
Reference in New Issue
Block a user