From 80914a3393c11afc7a70896f921139a5c6dab608 Mon Sep 17 00:00:00 2001 From: pourhakimi <84860195+pourhakimi@users.noreply.github.com> Date: Sat, 28 Dec 2024 19:49:12 +0200 Subject: [PATCH] New card pantry item --- buridan_ui/pantry/exports.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/buridan_ui/pantry/exports.py b/buridan_ui/pantry/exports.py index 71c55ba..d4032de 100644 --- a/buridan_ui/pantry/exports.py +++ b/buridan_ui/pantry/exports.py @@ -16,6 +16,7 @@ from .backgrounds.v4 import background_v4 from .cards.v1 import card_v1 from .cards.v2 import card_v2 +from .cards.v3 import card_v3 from .faq.v1 import faq_v1 from .featured.v1 import featured_v1 from .featured.v2 import featured_v2 @@ -121,6 +122,7 @@ def export(): create_export(prompt_v2, "prompts", 2), ], "cards": [ + create_export(card_v3, "cards", 3), create_export(card_v1, "cards", 1), create_export(card_v2, "cards", 2), ],