Basic management of shares

This commit is contained in:
eikek
2021-10-02 15:16:02 +02:00
parent de1baf725f
commit c7d587bea4
27 changed files with 1551 additions and 20 deletions

View File

@ -51,6 +51,9 @@ case class Timestamp(value: Instant) {
def <(other: Timestamp): Boolean =
this.value.isBefore(other.value)
def >(other: Timestamp): Boolean =
this.value.isAfter(other.value)
}
object Timestamp {