15 lines
360 B
Scheme
15 lines
360 B
Scheme
|
(define-interface rt-modules-interface
|
||
|
(export ((lambda-interface
|
||
|
with-names-from-rt-structure)
|
||
|
:syntax)
|
||
|
reify-structure
|
||
|
load-structure
|
||
|
load-config-file
|
||
|
rt-structure-binding))
|
||
|
|
||
|
(define-interface rt-modules-core-interface
|
||
|
(export interface-value-names
|
||
|
reify-structure
|
||
|
load-config-file
|
||
|
rt-structure-binding
|
||
|
load-structure))
|