This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#lang racket/base | |
;; Each library function is prefixed by the module it came from. | |
(require web-server/dispatch) | |
(define-values (dispatch blog-url) | |
(dispatch-rules | |
[("go") go])) | |
;; dispatch-rules patterns cover the entire URL, not just the prefix, |