8 lines
277 B
Racket
8 lines
277 B
Racket
#lang racket/base
|
|
(define-struct cached-entry (real-path ;; path to a module.
|
|
whalesong-version ;; string
|
|
md5 ;; md5 of the original source in real-path
|
|
bytes)
|
|
#:transparent) ;; bytes
|
|
|