lila/modules/history/src/main/package.scala

11 lines
241 B
Scala
Raw Permalink Normal View History

2014-07-26 08:06:32 -06:00
package lila
2017-10-07 19:45:50 -06:00
package object history extends PackageObject {
2014-07-26 08:06:32 -06:00
2017-08-23 17:56:39 -06:00
private[history] type ID = String
2014-07-26 08:06:32 -06:00
2019-12-13 07:30:20 -07:00
private[history] type Date = Int
private[history] type Rating = Int
2017-08-23 17:56:39 -06:00
private[history] type RatingsMap = List[(Date, Rating)]
2014-07-26 08:06:32 -06:00
}