Fix #12. Remove unused component parameter 'server'

This commit is contained in:
micahelrkytch
2023-03-09 16:36:36 -08:00
parent 2c46bda235
commit 268eb09577

View File

@ -143,7 +143,7 @@
;; Standard web server component -- knows how to stop and start your chosen
;; web server... uses Jetty but explains how to use http-kit instead:
;; lifecycle for the specified web server in which we run
(defrecord WebServer [handler-fn server port ; parameters
(defrecord WebServer [handler-fn port ; parameters
application ; dependencies
http-server shutdown] ; state
component/Lifecycle