Files
CLIProxyAPI/examples/plugin/request-lifecycle/go/go.mod
Luis Pater 30efd7c4fd feat(plugin): add request lifecycle plugin with interception and termination capabilities
- Implemented a Go-based dynamic library plugin for request lifecycle management.
- Added concurrency controls, keyword-based request termination, and response handling.
- Supported optional capabilities for request interception and active lifecycle termination.
- Included tests for schema compatibility, concurrency limits, and policy-based termination.
- Added build instructions and configuration details in README.
- Updated host support for lifecycle plugin RPC methods.

Closes: #4568
2026-07-28 03:22:18 +08:00

11 lines
245 B
Modula-2

module github.com/router-for-me/CLIProxyAPI/v7/examples/plugin/request-lifecycle/go
go 1.26.0
require (
github.com/router-for-me/CLIProxyAPI/v7 v7.0.0
gopkg.in/yaml.v3 v3.0.1
)
replace github.com/router-for-me/CLIProxyAPI/v7 => ../../../..