#lang scheme/base
(require net/url
scheme/contract
scheme/match
srfi/19
srfi/26
(planet untyped/unlib:3/debug)
(planet untyped/unlib:3/exn)
(planet untyped/unlib:3/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
scheme/match
srfi/19
srfi/26
(planet untyped/unlib:3/debug)
(planet untyped/unlib:3/exn)
(planet untyped/unlib:3/time)))
(provide/contract
[prevent-quoting-errors? (-> boolean?)]
[current-time-format (parameter/c (or/c string? (-> (or/c time-utc? time-tai?) string?)))])