Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/core/PHASE2_IMPLEMENTATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ The Permission Manager enforces fine-grained access control for plugins.
**Usage:**

```typescript
import { PluginPermissionManager } from '@objectstack/core/security';
import { PluginPermissionManager } from '@objectstack/core';

const permManager = new PluginPermissionManager(logger);

Expand Down Expand Up @@ -216,7 +216,7 @@ The Sandbox Runtime provides isolated execution environments with resource limit
**Usage:**

```typescript
import { PluginSandboxRuntime } from '@objectstack/core/security';
import { PluginSandboxRuntime } from '@objectstack/core';

const sandbox = new PluginSandboxRuntime(logger);

Expand Down
Loading