diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-11-24 10:47:21 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-11-24 10:47:21 +0800 |
commit | 435b189e18329901f59bf938d1006929f55571f4 (patch) | |
tree | 8c22a0b7df5fd28854234e6ae25ec8593a586bf9 /fg21sim/webui/handlers/__init__.py | |
parent | 2eb0f559b424fa4a2bbf96d2a563435d0c78732b (diff) | |
download | fg21sim-435b189e18329901f59bf938d1006929f55571f4.tar.bz2 |
webui: products.py: Add new "ProductsDownloadHandler"
This new handler is based on the "StaticFileHandler", and will be used
to serve the simulated products for downloading.
Diffstat (limited to 'fg21sim/webui/handlers/__init__.py')
-rw-r--r-- | fg21sim/webui/handlers/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fg21sim/webui/handlers/__init__.py b/fg21sim/webui/handlers/__init__.py index a859e6e..1783b4b 100644 --- a/fg21sim/webui/handlers/__init__.py +++ b/fg21sim/webui/handlers/__init__.py @@ -5,5 +5,5 @@ from .index import IndexHandler from .login import LoginHandler from .configs import ConfigsAJAXHandler from .console import ConsoleAJAXHandler -from .products import ProductsAJAXHandler +from .products import ProductsAJAXHandler, ProductsDownloadHandler from .websocket import WSHandler |