Skip to content

Commit

Permalink
Merge pull request #1 from nmunro/hotfix/export-set-methods
Browse files Browse the repository at this point in the history
Exported set methods
  • Loading branch information
nmunro authored Oct 1, 2021
2 parents f796794 + b801584 commit f014272
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion src/set/set.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
(:use :cl)
(:export #:make-set-api
#:make-set
#:code
#:gatherer-code
#:old-code
#:expansion
#:name
#:type
#:border
#:mkm-id
#:booster
#:mkm-name
#:release-date
#:online-only
#:magic-cards-info-code
#:block
#:fetch)
(:shadow :set :type :block))
(in-package :mtg-api/set)
Expand Down Expand Up @@ -35,7 +49,7 @@
(booster :initarg :booster :initform nil :reader booster)
(mkm-name :initarg :mkm-name :initform "" :reader mkm-name)
(release-date :initarg :release-date :initform "" :reader release-date)
(onlineOnly :initarg :online-only :initform nil :reader onlineOnly)
(onlineOnly :initarg :online-only :initform nil :reader online-only)
(magic-cards-info-code :initarg :magic-cards-info-code :initform "" :reader magic-cards-info-code)
(block :initarg :block :initform "" :reader block))
(:documentation "Represents a 'set' as returned from the /set resource of the API"))
Expand Down

0 comments on commit f014272

Please sign in to comment.