diff options
| author | Marius Peter <dev@marius-peter.com> | 2025-12-13 22:40:52 +0100 |
|---|---|---|
| committer | Marius Peter <dev@marius-peter.com> | 2025-12-13 22:40:52 +0100 |
| commit | 0bb6e30da121596184ae281e9e4dddaa6ccf7009 (patch) | |
| tree | 6b16fa18dbf186ed3cd04e12c33a0035d1814d01 /models/crop-rotation.rkt | |
| parent | 7c9ea5c931f684c4d560ef3671691d89269a7141 (diff) | |
Tighten up module requirements.
Diffstat (limited to 'models/crop-rotation.rkt')
| -rw-r--r-- | models/crop-rotation.rkt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/models/crop-rotation.rkt b/models/crop-rotation.rkt index cb6832e..3b0a69d 100644 --- a/models/crop-rotation.rkt +++ b/models/crop-rotation.rkt @@ -12,8 +12,7 @@ [get-latest-crop-rotation (-> (or/c crop-rotation? #f))] [delete-crop-rotation! (-> crop-rotation-or-id/c void?)])) -(require racket/contract - db +(require db sql "../db/conn.rkt" "crop-requirement.rkt" |