Skip to content

Commit 6451ed4

Browse files
committed
fix: Boilerplate template
1 parent 03111b3 commit 6451ed4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/puzzles/solutions/templates/solution.go.tmpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ func (s solution) Day() string {
2121
return puzzles.Day{{ .DayStr }}.String()
2222
}
2323

24-
func (s solution) Part1(input io.Reader) (string, error) {
24+
func (s solution) Part1(_ io.Reader) (string, error) {
2525
return "", puzzles.ErrNotImplemented
2626
}
2727

28-
func (s solution) Part2(input io.Reader) (string, error) {
28+
func (s solution) Part2(_ io.Reader) (string, error) {
2929
return "", puzzles.ErrNotImplemented
3030
}

0 commit comments

Comments
 (0)