chore: remove example files and release configuration

Deleted augmentation pipeline examples and `.releaserc.json`, streamlining the repository by eliminating redundant example implementations and release automation files.
This commit is contained in:
David Snelling 2025-05-27 13:58:49 -07:00
parent a22fd7de77
commit 5566ddfb09
14 changed files with 169 additions and 1474 deletions

View file

@ -20,11 +20,11 @@ type WebSocketConnection = {
}
type DataCallback<T> = (data: T) => void
export type AugmentationResponse<T> = Promise<{
export type AugmentationResponse<T> = {
success: boolean
data: T
error?: string
}>
}
/**
* Base interface for all Brainy augmentations.