repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | export class DummyHistoryManager { |
| #2 | constructor() {} |
| #3 | |
| #4 | async addHistory( |
| #5 | memoryId: string, |
| #6 | previousValue: string | null, |
| #7 | newValue: string | null, |
| #8 | action: string, |
| #9 | createdAt?: string, |
| #10 | updatedAt?: string, |
| #11 | isDeleted: number = 0, |
| #12 | ): Promise<void> { |
| #13 | return; |
| #14 | } |
| #15 | |
| #16 | async getHistory(memoryId: string): Promise<any[]> { |
| #17 | return []; |
| #18 | } |
| #19 | |
| #20 | async reset(): Promise<void> { |
| #21 | return; |
| #22 | } |
| #23 | |
| #24 | close(): void { |
| #25 | return; |
| #26 | } |
| #27 | } |
| #28 |