Cleanup backend finding
This commit is contained in:
parent
168b049b4d
commit
674a85ba0b
2 changed files with 20 additions and 15 deletions
17
moto/backends.py
Normal file
17
moto/backends.py
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
from moto.dynamodb import dynamodb_backend
|
||||
from moto.ec2 import ec2_backend
|
||||
from moto.elb import elb_backend
|
||||
from moto.s3 import s3_backend
|
||||
from moto.ses import ses_backend
|
||||
from moto.sqs import sqs_backend
|
||||
from moto.sts import sts_backend
|
||||
|
||||
BACKENDS = {
|
||||
'dynamodb': dynamodb_backend,
|
||||
'ec2': ec2_backend,
|
||||
'elb': elb_backend,
|
||||
's3': s3_backend,
|
||||
'ses': ses_backend,
|
||||
'sqs': sqs_backend,
|
||||
'sts': sts_backend,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue