Storage implementations for AT Protocol OAuth applications. Provides a simple key-value storage interface with implementations for in-memory and SQLite backends.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix formatting issues

+6 -2
+1 -1
.github/workflows/publish.yml
··· 3 3 on: 4 4 push: 5 5 tags: 6 - - 'v*' 6 + - "v*" 7 7 8 8 jobs: 9 9 publish:
+5 -1
README.md
··· 105 105 ```typescript 106 106 interface OAuthStorage { 107 107 get<T = unknown>(key: string): Promise<T | null>; 108 - set<T = unknown>(key: string, value: T, options?: { ttl?: number }): Promise<void>; 108 + set<T = unknown>( 109 + key: string, 110 + value: T, 111 + options?: { ttl?: number }, 112 + ): Promise<void>; 109 113 delete(key: string): Promise<void>; 110 114 } 111 115 ```