mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-02 01:37:07 +02:00
10 lines
179 B
Python
10 lines
179 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class SecurityConfig:
|
|
stdlib_allow: set[str]
|
|
external_allow: set[str]
|
|
builtins_deny: set[str]
|
|
runner_env_deny: bool
|