feat(core): Introduce ProcessMonitor class and integrate native and external plugins

This commit is contained in:
2025-03-01 12:15:22 +00:00
parent 594e006a5a
commit 2ffaeff4b5
9 changed files with 213 additions and 5 deletions

13
ts/plugins.ts Normal file
View File

@@ -0,0 +1,13 @@
// native scope
import * as path from 'node:path';
export {
path,
}
// @push.rocks scope
import * as smartpath from '@push.rocks/smartpath';
export {
smartpath,
}