Core Docs

core.storage Code Reference

core.storage Code Reference



Code-level documentation for core.storage.

Repository



KeyValue



Packageolivmiron/core.storage
Subdomaincore.storage.medkronos.com

Structure



<!-- Document the actual code structure here -->




Documentation in progress — see the repository source for current implementation.

Usage Example



// Example: uploading a file to core.storage
async function upload(file) {
const resp = await fetch('/api/upload', { method: 'POST', body: file });
return resp.json();
}