aoc-old/aoc/src/main/scala/aoc/Year.scala

10 lines
88 B
Scala

package aoc
trait Year {
def !(): this.type = this
def days: Map[String, Day]
}