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

10 lines
88 B
Scala
Raw Normal View History

2018-11-25 00:14:47 +00:00
package aoc
trait Year {
2018-11-28 14:44:24 +00:00
def !(): this.type = this
2018-11-25 00:14:47 +00:00
def days: Map[String, Day]
}