Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
vendelieu authored Nov 13, 2023
1 parent 73ac0fc commit 536c877
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ fun get(uuid: String): User = getOne { USER.UUID.eq(uuid) } ?: create(uuid)
fun update(uuid: String, block: User.() -> Unit): User? = update(USER.UUID.eq(uuid), block)

fun countUsers() = count {
USER.CREATED_AT.gt(Instant.now().plus(1.day))
USER.CREATED_AT.gt(Instant.now().minus(1.day))
}
```

Expand Down

0 comments on commit 536c877

Please sign in to comment.