贡献指南
代码结构
[cmd/]
├── server // Enterpoint for starting the server.
├── lib // Enterpoint for Shared libraries.
└── test // Common test scripts.
[build/] // build scripts for different architectures and platforms.
[internal/] // Internal packages.
├── controller // HTTP request handlers.
├── middleware // Middleware for request processing.
├── server // Server setup and configuration.
├── service // Provides service for controller.
├── static // Configuration files.
│ ├── nodejs_syscall // Whitelist for nodejs syscall.
│ └── python_syscall // Whitelist for python syscall.
├── types // Entities
├── core // Core logic for isolation and execution.
│ ├── lib // Shared libraries.
│ ├── runner // Code execution.
│ │ ├── nodejs // Nodejs runner.
| | └── python // Python runner.
└── tests // Tests for CI/CD.原理
如何贡献
待办事项
Last updated