Skip to content

Commit

Permalink
fix: language bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethosa committed Jan 17, 2025
1 parent 0f398e0 commit d5d02c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Binary file modified bindings/python/happyx/happyx_win.pyd
Binary file not shown.
8 changes: 4 additions & 4 deletions src/happyx/routing/routing/types.nim
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@ type
path*: string


when exportPython or defined(docgen):
when exportPython:
import
nimpy,
nimpy/py_types,
regex,
../bindings/python_types
../../bindings/python_types
type
RouteObject* = PyObject
elif defined(napibuild):
import
denim,
regex,
../bindings/node_types
../../bindings/node_types
type
RouteObject* = napi_value
elif exportJvm:
Expand All @@ -41,7 +41,7 @@ elif exportJvm:
jnim/private/[jni_wrapper],
jnim/java/[lang, util],
regex,
../bindings/java_types
../../bindings/java_types
type
RouteObject* = PathParam
else:
Expand Down

0 comments on commit d5d02c8

Please sign in to comment.