dev: register puter.perms module

This commit is contained in:
KernelDeimos
2025-03-04 14:39:32 -05:00
parent 1f05df68eb
commit f0a6e493a1
+2
View File
@@ -26,6 +26,7 @@ import { make_http_api } from './lib/http.js';
import Exec from './modules/Exec.js';
import Convert from './modules/Convert.js';
import Threads from './modules/Threads.js';
import Perms from './modules/Perms.js';
// TODO: This is for a safe-guard below; we should check if we can
// generalize this behavior rather than hard-coding it.
@@ -100,6 +101,7 @@ window.puter = (function() {
this.registerModule('ai', AI);
this.registerModule('kv', KV);
this.registerModule('threads', Threads);
this.registerModule('perms', Perms);
this.registerModule('drivers', Drivers);
this.registerModule('debug', Debug);
this.registerModule('exec', Exec);