chore(engine): final cleanup after platform abstraction refactor (closes #51)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
funman300
2026-05-27 18:08:00 -07:00
parent ce536b0176
commit a3b9293cd9
2 changed files with 7 additions and 0 deletions
+5
View File
@@ -1,3 +1,8 @@
//! Platform-specific persistent storage backends.
//!
//! Native builds persist bytes under the app data directory, while browser
//! builds route the same engine API through `localStorage`.
use std::io;
use std::sync::Arc;
+2
View File
@@ -1,3 +1,5 @@
//! Platform-specific wall-clock time sources.
/// Abstracts platform-specific wall-clock time.
///
/// Native: backed by `std::time::SystemTime`.