mirror of
https://github.com/router-for-me/CLIProxyAPI.git
synced 2026-02-18 12:20:52 +08:00
rebuild branch
This commit is contained in:
15
internal/interfaces/types.go
Normal file
15
internal/interfaces/types.go
Normal file
@@ -0,0 +1,15 @@
|
||||
// Package interfaces provides type aliases for backwards compatibility with translator functions.
|
||||
// It defines common interface types used throughout the CLI Proxy API for request and response
|
||||
// transformation operations, maintaining compatibility with the SDK translator package.
|
||||
package interfaces
|
||||
|
||||
import sdktranslator "github.com/router-for-me/CLIProxyAPI/v6/sdk/translator"
|
||||
|
||||
// Backwards compatible aliases for translator function types.
|
||||
type TranslateRequestFunc = sdktranslator.RequestTransform
|
||||
|
||||
type TranslateResponseFunc = sdktranslator.ResponseStreamTransform
|
||||
|
||||
type TranslateResponseNonStreamFunc = sdktranslator.ResponseNonStreamTransform
|
||||
|
||||
type TranslateResponse = sdktranslator.ResponseTransform
|
||||
Reference in New Issue
Block a user