Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
urls.py 269 B
from flask_microservices import url
from . import views

urlpatterns = [
    url('/modules/hallo-module', view_func=views.hallo_module, name='hallo_module')
    , url(
      '/modules/hallo-module/subview', view_func=views.subview
      , name='hallo_module_subview')
]