1
0
mirror of https://github.com/ragestudio/relic.git synced 2025-07-12 18:54:17 +00:00
2024-04-02 20:21:58 +02:00

9 lines
274 B
JavaScript

import ManifestReader from "../manifest/reader"
import ManifestVM from "../manifest/vm"
export default async function softRead(manifest, options = {}) {
const Reader = await ManifestReader(manifest)
const VM = await ManifestVM(Reader.code, options)
return VM
}