mirror of
https://git.yoctoproject.org/poky
synced 2026-03-09 16:59:40 +01:00
removed unused imports which made the code harder to read, and slightly but less efficient (Bitbake rev: 4367692a932ac135c5aa4f9f2a4e4f0150f76697) Signed-off-by: Frazer Clews <frazer.clews@codethink.co.uk> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
17 lines
373 B
Python
17 lines
373 B
Python
#
|
|
# BitBake Toaster Implementation
|
|
#
|
|
# Copyright (C) 2014-2017 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
|
|
from django.conf.urls import 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'),
|
|
]
|