mirror of
https://github.com/aljazceru/goose.git
synced 2026-01-08 17:04:25 +01:00
8 lines
125 B
TypeScript
8 lines
125 B
TypeScript
/**
|
|
* Bot configuration interface
|
|
*/
|
|
export interface BotConfig {
|
|
instructions: string;
|
|
activities: string[] | null;
|
|
}
|