coai/globals/interface.go
2023-12-01 22:48:25 +08:00

11 lines
201 B
Go

package globals
type ChannelConfig interface {
GetType() string
GetModelReflect(model string) string
GetRetry() int
GetRandomSecret() string
GetEndpoint() string
ProcessError(err error) error
}