aboutsummaryrefslogtreecommitdiff
path: root/src/wrapper/strings/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wrapper/strings/mod.rs')
-rw-r--r--src/wrapper/strings/mod.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wrapper/strings/mod.rs b/src/wrapper/strings/mod.rs
new file mode 100644
index 0000000..2e03363
--- /dev/null
+++ b/src/wrapper/strings/mod.rs
@@ -0,0 +1,6 @@
+// String types for sending to/from the jvm
+mod ffi_str;
+pub use self::ffi_str::*;
+
+mod java_str;
+pub use self::java_str::*;