add load_internal

This commit is contained in:
Folkert 2022-03-23 15:18:22 +01:00
parent 750fbf2dcf
commit 311e464b70
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
55 changed files with 100 additions and 73 deletions

View file

@ -0,0 +1,9 @@
#![warn(clippy::dbg_macro)]
// See github.com/rtfeldman/roc/issues/800 for discussion of the large_enum_variant check.
#![allow(clippy::large_enum_variant)]
pub mod docs;
pub mod file;
mod work;
#[cfg(target_family = "wasm")]
mod wasm_system_time;