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

11 lines
241 B
Scala

package lila
package object history extends PackageObject {
private[history] type ID = String
private[history] type Date = Int
private[history] type Rating = Int
private[history] type RatingsMap = List[(Date, Rating)]
}