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

Documentation

Unregister the entry point with url (entry-point.url ENTRY-POINT)

Source

(defmethod unregister-entry-point ((app standard-application) (entry-point entry-point))
  "Unregister the entry point with url (entry-point.url ENTRY-POINT)"
  (setf (application.entry-points app) (delete entry-point (application.entry-points app)))
  (unregister-entry-point (application.server app) entry-point))
Source Context