Skip to content

Commit b68bc41

Browse files
authored
Merge pull request #389 from HapticX/dev
fix: language bindings
2 parents b0cf93c + d5d02c8 commit b68bc41

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

bindings/python/happyx/happyx_win.pyd

-5.11 KB
Binary file not shown.

src/happyx/routing/routing/types.nim

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,19 @@ type
2020
path*: string
2121

2222

23-
when exportPython or defined(docgen):
23+
when exportPython:
2424
import
2525
nimpy,
2626
nimpy/py_types,
2727
regex,
28-
../bindings/python_types
28+
../../bindings/python_types
2929
type
3030
RouteObject* = PyObject
3131
elif defined(napibuild):
3232
import
3333
denim,
3434
regex,
35-
../bindings/node_types
35+
../../bindings/node_types
3636
type
3737
RouteObject* = napi_value
3838
elif exportJvm:
@@ -41,7 +41,7 @@ elif exportJvm:
4141
jnim/private/[jni_wrapper],
4242
jnim/java/[lang, util],
4343
regex,
44-
../bindings/java_types
44+
../../bindings/java_types
4545
type
4646
RouteObject* = PathParam
4747
else:

0 commit comments

Comments
 (0)