
necessary modules are now "all.rkt"s; "shard.rkt"s turn to "resources.rkt". Also, "navbar.rkt" changes to "all.rkt", since it was doing the same thing (in addition to setting the navbar).
9 lines
259 B
Racket
9 lines
259 B
Racket
#lang racket/base
|
|
|
|
(provide planet)
|
|
|
|
(require "planet.rkt" "blog.rkt" ; these need to be copied to the service
|
|
"pre.rkt" "git.rkt" ; / these are used on the
|
|
"mailman.rkt" "dirlist.rkt" ; \ server directly
|
|
"wiki.rkt")
|