xref: /OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/bldcollector/urls.py (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1#
2# BitBake Toaster Implementation
3#
4# Copyright (C) 2014-2017   Intel Corporation
5#
6# SPDX-License-Identifier: GPL-2.0-only
7#
8
9from django.conf.urls import url
10
11import bldcollector.views
12
13urlpatterns = [
14        # landing point for pushing a bitbake_eventlog.json file to this toaster instace
15        url(r'^eventfile$', bldcollector.views.eventfile, name='eventfile'),
16]
17