mirror of
				https://github.com/encode/django-rest-framework.git
				synced 2025-11-04 01:47:59 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			175 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			175 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from __future__ import unicode_literals
 | 
						|
from django.conf.urls import patterns
 | 
						|
 | 
						|
from .views import MockView
 | 
						|
 | 
						|
urlpatterns = patterns(
 | 
						|
    '',
 | 
						|
    (r'^$', MockView.as_view()),
 | 
						|
)
 |