mirror of
https://github.com/stulzq/azure-openai-proxy.git
synced 2025-12-19 23:34:19 +01:00
10 lines
136 B
Go
10 lines
136 B
Go
package apis
|
|
|
|
var (
|
|
ignoreHeaders = map[string]int{
|
|
"Content-Type": 1,
|
|
"Transfer-Encoding": 1,
|
|
"Date": 1,
|
|
}
|
|
)
|