UNPKG

godprotocol

Version:

A distributed computing environment for Web 4.0 — integrating AI, decentralisation, and virtual computation.

17 lines (12 loc) 245 B
import Storage from "./functions/storage.js"; class Voi extends Storage { constructor(config, account) { super(account); this.config = config this.type = 'void' } literal = ()=>{ return 'void' } } export default Voi;