mirror of
https://github.com/hellosteadman/bambu-buffer.git
synced 2025-05-04 16:29:51 +00:00
8 lines
314 B
Python
8 lines
314 B
Python
from django.conf.urls import patterns, url
|
|
|
|
urlpatterns = patterns('bambu_buffer.views',
|
|
url('^$', 'profiles', name = 'buffer_profiles'),
|
|
url('^refresh/$', 'refresh', name = 'buffer_refresh'),
|
|
url('^auth/$', 'auth', name = 'buffer_auth'),
|
|
url('^callback/$', 'callback', name = 'buffer_callback')
|
|
)
|