mirror of
https://github.com/jazzband/django-categories.git
synced 2026-04-04 15:40:34 +00:00
10 lines
237 B
Python
10 lines
237 B
Python
# Storages used for testing THUMBNAIL_STORAGE and THUMBNAIL_STORAGE_ALIAS
|
|
from django.core.files.storage import FileSystemStorage
|
|
|
|
|
|
class MyTestStorage(FileSystemStorage):
|
|
pass
|
|
|
|
|
|
class MyTestStorageAlias(FileSystemStorage):
|
|
pass
|