syndicate-rkt/syndicate/main.rkt

38 lines
1.1 KiB
Racket
Raw Permalink Normal View History

2021-06-04 13:56:03 +00:00
;;; SPDX-License-Identifier: LGPL-3.0-or-later
2024-03-10 11:43:06 +00:00
;;; SPDX-FileCopyrightText: Copyright © 2021-2024 Tony Garnock-Jones <tonyg@leastfixedpoint.com>
2018-04-29 11:22:12 +00:00
#lang racket/base
2021-06-10 09:42:07 +00:00
(provide (except-out (all-from-out "actor.rkt") current-turn)
(struct-out entity-ref)
2021-06-02 13:00:25 +00:00
(all-from-out "syntax.rkt")
2021-06-21 12:39:41 +00:00
(all-from-out "query.rkt")
2021-06-17 12:57:06 +00:00
(all-from-out "service.rkt")
2021-06-14 17:23:20 +00:00
(all-from-out "event-expander.rkt")
2022-11-30 19:50:25 +00:00
(all-from-out "async.rkt")
(all-from-out preserves)
(all-from-out preserves-schema)
assertion-struct
message-struct
:pattern)
2021-05-27 09:28:10 +00:00
2021-06-13 05:55:50 +00:00
(require "actor.rkt")
2021-06-09 13:06:58 +00:00
(require "entity-ref.rkt")
2021-06-02 13:00:25 +00:00
(require "syntax.rkt")
2021-06-21 12:39:41 +00:00
(require "query.rkt")
2021-06-17 12:57:06 +00:00
(require "service.rkt")
2021-06-14 17:23:20 +00:00
(require "event-expander.rkt")
2022-11-30 19:50:25 +00:00
(require "async.rkt")
2021-06-02 13:00:25 +00:00
(require preserves)
(require preserves-schema)
;; Thin veneers over `struct` for declaring intent.
(define-syntax-rule (assertion-struct item ...) (struct item ... #:prefab))
(define-syntax-rule (message-struct item ...) (struct item ... #:prefab))
(require (only-in "pattern.rkt" :pattern))
2018-04-29 11:22:12 +00:00
(module reader syntax/module-reader syndicate/lang)