diff options
Diffstat (limited to 'api/urls.py')
-rw-r--r-- | api/urls.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/api/urls.py b/api/urls.py new file mode 100644 index 000000000..9fa0bc935 --- /dev/null +++ b/api/urls.py @@ -0,0 +1,7 @@ +from api import views +from api.utils.common import Url + + +urlpatterns = [ + Url('/yardstick/test/action', views.Test, 'test') +] |