mostly just to prove to myself that i can use pysimplesoap and be kinda pleased with the results
9 lines
196 B
Python
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'),
|
|
)
|