From 2148259e69348236f52cf4b56fecc992ecd97da0 Mon Sep 17 00:00:00 2001 From: Alexander Artemenko Date: Sun, 5 Jan 2025 21:25:21 +0000 Subject: [PATCH] Fixed missing import. --- examples/gallery.lisp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/gallery.lisp b/examples/gallery.lisp index 7dda244..5c6162b 100644 --- a/examples/gallery.lisp +++ b/examples/gallery.lisp @@ -41,13 +41,15 @@ #:delete-messages) (:import-from #:cl-telegram-bot2/callback #:callback) + (:import-from #:cl-telegram-bot-media + #:get-path-to-dir) (:documentation "This example shows how to keep use state's vars to keep current photo's index and to edit message's media when user clicks on Prev/Next buttons.")) (in-package #:cl-telegram-bot2-examples/gallery) (defparameter *photos* (directory (uiop:wilden - (cl-telegram-bot-media:get-path-to-dir "images" "cats")))) + (get-path-to-dir "images" "cats")))) (defun make-keyboard (photo-index)