diff options
Diffstat (limited to 'candle-wasm-examples/llama2-c/src/lib.rs')
-rw-r--r-- | candle-wasm-examples/llama2-c/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/candle-wasm-examples/llama2-c/src/lib.rs b/candle-wasm-examples/llama2-c/src/lib.rs index b6b4004f..cd7834b5 100644 --- a/candle-wasm-examples/llama2-c/src/lib.rs +++ b/candle-wasm-examples/llama2-c/src/lib.rs @@ -1,5 +1,5 @@ mod app; -mod model; -mod worker; +pub mod model; +pub mod worker; pub use app::App; pub use worker::Worker; |