refactor: identity -> iam
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
||||
export type ServerContext = {};
|
||||
export interface ServerContext {
|
||||
id: string;
|
||||
}
|
||||
|
||||
export const context: ServerContext = {} as any;
|
||||
|
||||
@@ -17,5 +17,6 @@ export function getStorageContext(): StorageContext {
|
||||
return store;
|
||||
}
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
||||
export type StorageContext = {};
|
||||
export interface StorageContext {
|
||||
id: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user