8 lines
131 B
Python
8 lines
131 B
Python
from . import echo, pdf, image
|
|
|
|
REGISTRY = {
|
|
echo.NAME: echo.handle,
|
|
pdf.NAME: pdf.handle,
|
|
image.NAME: image.handle,
|
|
}
|