mirror of
https://github.com/stulzq/azure-openai-proxy.git
synced 2025-12-20 15:54:20 +01:00
11 lines
191 B
Go
11 lines
191 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/stulzq/azure-openai-proxy/apis"
|
|
)
|
|
|
|
func registerRoute(r *gin.Engine) {
|
|
r.POST("/v1/chat/completions", apis.ChatCompletions)
|
|
}
|