urls.py 382 B

12345678910111213141516
  1. #
  2. # BitBake Toaster Implementation
  3. #
  4. # Copyright (C) 2014-2017 Intel Corporation
  5. #
  6. # SPDX-License-Identifier: GPL-2.0-only
  7. #
  8. from django.conf.urls import include, url
  9. import bldcollector.views
  10. urlpatterns = [
  11. # landing point for pushing a bitbake_eventlog.json file to this toaster instace
  12. url(r'^eventfile$', bldcollector.views.eventfile, name='eventfile'),
  13. ]