Nearly finished Polly implementation
This commit is contained in:
parent
b17136e36c
commit
fcacecbef0
12 changed files with 520 additions and 3 deletions
13
moto/polly/urls.py
Normal file
13
moto/polly/urls.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
from __future__ import unicode_literals
|
||||
from .responses import PollyResponse
|
||||
|
||||
url_bases = [
|
||||
"https?://polly.(.+).amazonaws.com",
|
||||
]
|
||||
|
||||
url_paths = {
|
||||
'{0}/v1/voices': PollyResponse.dispatch,
|
||||
'{0}/v1/lexicons/.+': PollyResponse.dispatch,
|
||||
'{0}/v1/lexicons': PollyResponse.dispatch,
|
||||
'{0}/v1/speech': PollyResponse.dispatch,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue