mirror of
				https://github.com/TrentSPalmer/trentpalmerdotorg.git
				synced 2025-10-30 22:31:41 -07:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			256 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			256 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.contrib import admin
 | |
| from django.urls import path, include
 | |
| 
 | |
| urlpatterns = [
 | |
|     path('admin/', admin.site.urls),
 | |
|     path('', include('audio.urls')),
 | |
|     path('accounts/', include('accounts.urls')),
 | |
|     path('about/', include('about.urls')),
 | |
| ]
 |