10 lines
164 B
Python
10 lines
164 B
Python
from .responses import CloudWatchResponse
|
|
|
|
url_bases = [
|
|
"https?://monitoring.(.+).amazonaws.com",
|
|
]
|
|
|
|
url_paths = {
|
|
'{0}/$': CloudWatchResponse.dispatch,
|
|
}
|