mirror of
				https://github.com/spbleadersofdigtal/backend.git
				synced 2025-11-04 09:37:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			213 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			213 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from django.urls import include, path
 | 
						|
 | 
						|
app_name = "api"
 | 
						|
urlpatterns = [
 | 
						|
    path("ticket/", include("pitch_deck_generator.tickets.api.urls")),
 | 
						|
    path("decks/", include("pitch_deck_generator.decks.api.urls")),
 | 
						|
]
 |