aboutsummaryrefslogtreecommitdiffstats
path: root/teleterm/src/web.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-11-15 14:28:34 -0500
committerJesse Luehrs <doy@tozt.net>2019-11-15 14:28:34 -0500
commited3a55508532fbaf6359abcc6e6a29192139cc9c (patch)
treea64f46a7b093281cc309c084d48818dd8a7d9854 /teleterm/src/web.rs
parent17f98c7d0a864502e5722e756e33c6d2fef8a2c0 (diff)
downloadteleterm-ed3a55508532fbaf6359abcc6e6a29192139cc9c.tar.gz
teleterm-ed3a55508532fbaf6359abcc6e6a29192139cc9c.zip
move paths around a bit
this seems more likely to work when building the published crate
Diffstat (limited to 'teleterm/src/web.rs')
-rw-r--r--teleterm/src/web.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/teleterm/src/web.rs b/teleterm/src/web.rs
index 5159233..1cf3a31 100644
--- a/teleterm/src/web.rs
+++ b/teleterm/src/web.rs
@@ -8,15 +8,15 @@ use lazy_static_include::*;
lazy_static_include::lazy_static_include_bytes!(
INDEX_HTML,
- "../static/index.html"
+ "static/index.html"
);
lazy_static_include::lazy_static_include_bytes!(
TELETERM_WEB_JS,
- "../target/wasm/teleterm_web.js"
+ "static/teleterm_web.js"
);
lazy_static_include::lazy_static_include_bytes!(
TELETERM_WEB_WASM,
- "../target/wasm/teleterm_web_bg.wasm"
+ "static/teleterm_web_bg.wasm"
);
pub fn router() -> impl gotham::handler::NewHandler {