feat: shareable goose bots (#1721)

This commit is contained in:
Michael Neale
2025-03-22 22:35:58 +11:00
committed by GitHub
parent f925560410
commit 20a35c7bad
9 changed files with 498 additions and 33 deletions
+7
View File
@@ -0,0 +1,7 @@
/**
* Bot configuration interface
*/
export interface BotConfig {
instructions: string;
activities: string[] | null;
}