Initial Commit

This commit is contained in:
2025-09-07 01:46:37 -04:00
commit 66986cca51
272 changed files with 15331 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
export default interface IUserDataStore {
get(key: string, defaultValue: string): Promise<string>;
set(key: string, value: string): Promise<void>;
}