1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #12142: Add S3Backend to __all__

This commit is contained in:
Tobias Genannt
2023-04-01 11:28:33 +02:00
parent 8d6c591535
commit e7d1a43541

View File

@ -20,6 +20,7 @@ from .exceptions import SyncError
__all__ = (
'LocalBackend',
'GitBackend',
'S3Backend',
)
logger = logging.getLogger('netbox.data_backends')