Register the entry point ENTRY-POINT. This method also calls the app's server's REGISTER-ENTRY-POINT method.
(defmethod register-entry-point ((app standard-application) (entry-point entry-point))
"Register the entry point ENTRY-POINT.
This method also calls the app's server's REGISTER-ENTRY-POINT method."
(push entry-point (application.entry-points app))
(when (application.server app)
(register-entry-point (application.server app) entry-point)))Source Context