From 963c03db8920d67fd221cc9602a49cce573b1d81 Mon Sep 17 00:00:00 2001 From: Jaidyn Ann <10477760+JadedCtrl@users.noreply.github.com> Date: Wed, 12 Jun 2024 22:36:13 -0500 Subject: [PATCH] Export classes from activity-vocabulary package --- src/activity-vocabulary.lisp | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/activity-vocabulary.lisp b/src/activity-vocabulary.lisp index dd4a354..8900ee8 100644 --- a/src/activity-vocabulary.lisp +++ b/src/activity-vocabulary.lisp @@ -17,10 +17,20 @@ (defpackage #:activitypub-servist/activity-vocabulary (:use #:cl) + (:nicknames "AP-S/AV" "AV") + (:shadow #:delete #:ignore #:listen #:read #:remove) ;; One should never USE this package, since some class-names shadow ;; core Common Lisp symbols! Beware! :P - (:shadow #:delete #:ignore #:listen #:read #:remove) - (:nicknames "AP-S/AV" "AV")) + (:export + :accept :activity :add :announce :application :arrive :article :audio + :collection :collection-page :create :delete :dislike :document :event :flag + :follow :group :ignore :ignore :image :intransitive-activity :invite :join + :leave :like :link :link :listen :move :note :object :offer + :ordered-collection :ordered-collection-page :organization :page :person + :place :profile :question :read :reject :relationship :remove :service + :tentative-accept :tentative-reject :tombstone :travel :undo :update :video + :view)) + (in-package #:activitypub-servist/activity-vocabulary)