X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=utils%2Ftest%2Freporting%2Fapi%2Furls.py;fp=utils%2Ftest%2Freporting%2Fapi%2Furls.py;h=fcfb2d795d15258c962d8ac1e5a7ffe4f5088ad7;hb=64605f1cc7117854abb203375deee396e0d65cc1;hp=0000000000000000000000000000000000000000;hpb=53ed9e36a13d03455fc04b3f54ed290037359f6b;p=releng.git diff --git a/utils/test/reporting/api/urls.py b/utils/test/reporting/api/urls.py new file mode 100644 index 000000000..fcfb2d795 --- /dev/null +++ b/utils/test/reporting/api/urls.py @@ -0,0 +1,14 @@ +############################################################################## +# Copyright (c) 2016 Huawei Technologies Co.,Ltd and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## +from handlers import landing + +mappings = [ + (r"/landing-page/filters", landing.FiltersHandler), + (r"/landing-page/scenarios", landing.ScenariosHandler) +]