mirror of
https://github.com/coaidev/coai.git
synced 2025-05-19 21:10:18 +09:00
12 lines
203 B
Go
12 lines
203 B
Go
package adaptercommon
|
|
|
|
import (
|
|
"chat/globals"
|
|
)
|
|
|
|
type Factory interface {
|
|
CreateStreamChatRequest(props *ChatProps, hook globals.Hook) error
|
|
}
|
|
|
|
type FactoryCreator func(globals.ChannelConfig) Factory
|