Brian S. Stephan 425bf64baa facts: proof of concept grade SOAP WS
mostly just to prove to myself that i can use pysimplesoap and be kinda
pleased with the results
2015-08-14 16:54:31 -05:00

9 lines
196 B
Python

"""URL patterns for the facts API."""
from django.conf.urls import patterns, url
urlpatterns = patterns('',
url(r'^soap/', 'facts.soap.dispatcher_handler', name='facts_soap_dispatcher'),
)