added post guards to deck.llm

This commit is contained in:
Luxferre
2025-12-27 12:01:06 +02:00
parent 31f2ded417
commit 8d8796b01d
+4 -1
View File
@@ -3,7 +3,10 @@
# Created by Luxferre in 2025, released into public domain # Created by Luxferre in 2025, released into public domain
import json, re import json, re
from deck.time import * try:
from deck.time import time
except:
import time
# init requests library in a platform-agnostic way # init requests library in a platform-agnostic way
requests = None requests = None