mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 00:07:22 +00:00
9 lines
204 B
Python
9 lines
204 B
Python
from project import app, img_path
|
|
from project.utils import clear_files_in_dir
|
|
|
|
|
|
def clear_images():
|
|
app.logger.info("Clearing images..")
|
|
clear_files_in_dir(img_path)
|
|
app.logger.info("Done.")
|