mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 16:56:38 +08:00
11 lines
266 B
Go
11 lines
266 B
Go
package vo
|
|
|
|
import "chatplus/core/types"
|
|
|
|
type Config struct {
|
|
Id uint `json:"id"`
|
|
Key string `json:"key"`
|
|
ChatConfig types.ChatConfig `json:"chat_config"`
|
|
SystemConfig types.SystemConfig `json:"system_config"`
|
|
}
|