mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-22 02:18:26 +00:00
Basic management of shares
This commit is contained in:
@ -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 {
|
||||
|
Reference in New Issue
Block a user