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