mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

With the introduction of SPDX-License-Identifier headers, we don't need a ton of header boilerplate in every file. Simplify the files and rely on the top level for the full licence text. (Bitbake rev: 695d84397b68cc003186e22f395caa378b06bc75) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
17 lines
382 B
Python
17 lines
382 B
Python
#
|
|
# BitBake Toaster Implementation
|
|
#
|
|
# Copyright (C) 2014-2017 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
|
|
from django.conf.urls import include, url
|
|
|
|
import bldcollector.views
|
|
|
|
urlpatterns = [
|
|
# landing point for pushing a bitbake_eventlog.json file to this toaster instace
|
|
url(r'^eventfile$', bldcollector.views.eventfile, name='eventfile'),
|
|
]
|