Method: (REGISTER-ENTRY-POINT STANDARD-APPLICATION ENTRY-POINT)

Documentation

Register the entry point ENTRY-POINT. This method also calls the app's server's REGISTER-ENTRY-POINT method.

Source

(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