xml/xml.ss
#lang scheme/base

(require (file "render.ss")
         (file "response.ss")
         (file "struct.ss")
         (file "syntax.ss")
         (file "util.ss"))

(provide (all-from-out (file "render.ss"))
         (all-from-out (file "response.ss"))
         (all-from-out (file "syntax.ss"))
         (all-from-out (file "util.ss"))
         xml?)