#lang scheme/base
(require net/url
scheme/contract
srfi/19
(planet untyped/unlib/debug)
(planet untyped/unlib/exn)
(planet untyped/unlib/time))
(define (prevent-quoting-errors?) #f)
(define current-time-format
(make-parameter "~Y-~m-~d ~H:~M:~S"))
(provide (all-from-out net/url
scheme/contract
srfi/19
(planet untyped/unlib/debug)
(planet untyped/unlib/exn)
(planet untyped/unlib/time)))
(provide/contract
[prevent-quoting-errors? (-> boolean?)]
[current-time-format (parameter/c (or/c string?
(-> (or/c time-utc? time-tai?)
string?)))])