mirror of https://github.com/openspug/spug
				
				
				
			
		
			
				
	
	
		
			17 lines
		
	
	
		
			498 B
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			498 B
		
	
	
	
		
			Python
		
	
	
# Copyright: (c) OpenSpug Organization. https://github.com/openspug/spug
 | 
						|
# Copyright: (c) <spug.dev@gmail.com>
 | 
						|
# Released under the MIT License.
 | 
						|
from django.urls import path
 | 
						|
 | 
						|
from .views import *
 | 
						|
 | 
						|
urlpatterns = [
 | 
						|
    path('', ConfigView.as_view()),
 | 
						|
    path('parse/json/', parse_json),
 | 
						|
    path('parse/text/', parse_text),
 | 
						|
    path('diff/', post_diff),
 | 
						|
    path('environment/', EnvironmentView.as_view()),
 | 
						|
    path('service/', ServiceView.as_view()),
 | 
						|
    path('history/', HistoryView.as_view()),
 | 
						|
]
 |