path('lib-test', views.lib_test, name='lib_test'),
def lib_test(self): from theproject import lib_test return HttpResponse(lib_test.test('123'))
def test(x): return 'Working ' + x