aboutsummaryrefslogtreecommitdiffstats
path: root/src/extension.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/extension.lisp')
-rw-r--r--src/extension.lisp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/extension.lisp b/src/extension.lisp
new file mode 100644
index 0000000..bc75fb9
--- /dev/null
+++ b/src/extension.lisp
@@ -0,0 +1,13 @@
+(in-package :extreload)
+
+(defclass extension ()
+ ((id
+ :initarg :id
+ :reader id
+ :documentation "The extension's ID.")
+ (session-id
+ :initarg :session-id
+ :reader session-id
+ :documentation "A DevTools Protocol session ID."))
+
+ (:documentation "An extension."))