aboutsummaryrefslogtreecommitdiff
path: root/app/handlers/boot.py
diff options
context:
space:
mode:
authorMilo Casagrande <milo.casagrande@linaro.org>2014-05-07 18:06:07 +0200
committerMilo Casagrande <milo.casagrande@linaro.org>2014-05-07 18:06:07 +0200
commitce305cc85360f0bdb52728c3f217a1be6cc9fe34 (patch)
treed39a98a3cb7dc5544512dae4bf901fd83bc55b1c /app/handlers/boot.py
parent7b1b1a2839d8346cb7e823a5ad7452bddf62785d (diff)
Add prototype for BootHandler.
Diffstat (limited to 'app/handlers/boot.py')
-rw-r--r--app/handlers/boot.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/app/handlers/boot.py b/app/handlers/boot.py
new file mode 100644
index 0000000..fc16b46
--- /dev/null
+++ b/app/handlers/boot.py
@@ -0,0 +1,22 @@
+# Copyright (C) 2014 Linaro Ltd.
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+"""The RequestHandler for /boot URLs."""
+
+from handlers.base import BaseHandler
+
+
+class BootHandler(BaseHandler):
+ """Handle the /boot URLs."""