Skip to content

Commit

Permalink
Make Colima Laboratory instance
Browse files Browse the repository at this point in the history
  • Loading branch information
foretspaisibles committed Oct 18, 2024
1 parent 2ce726d commit 663d44e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions libexec/lisp/colima.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#:instance-memory-size
#:instance-disk-size

#:make-laboratory-instance
#:list-instances
#:find-instance
#:start-instance
Expand Down Expand Up @@ -63,6 +64,11 @@ This can be one of the values :AARCH64 or :X86_64.")
:reader instance-disk-size
:documentation "The size of instance disk storage in GB.")))

(defun make-laboratory-instance ()
(make-instance 'instance
:name "laboratory"
:memory-size 4))

(defmethod print-object ((instance instance) stream)
(print-unreadable-object (instance stream :type t :identity t)
(with-slots (name status) instance
Expand Down

0 comments on commit 663d44e

Please sign in to comment.