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') ]