11 lines
204 B
Python
11 lines
204 B
Python
"""
|
|
Gather all media data into one file,
|
|
so all other files can call it from here
|
|
|
|
"""
|
|
|
|
try:
|
|
from memes import __memes_list__
|
|
except ImportError as error:
|
|
print(f"Error while importing: {error}")
|