16 lines
476 B
TypeScript
16 lines
476 B
TypeScript
import { User } from '../../domain/entities/User';
|
|
// No direct import of apps/api DTOs in core module
|
|
|
|
/**
|
|
* Application Use Case: GetCurrentSessionUseCase
|
|
*
|
|
* Retrieves the current user session information.
|
|
*/
|
|
export class GetCurrentSessionUseCase {
|
|
async execute(userId: string): Promise<User | null> {
|
|
// TODO: Implement actual logic to retrieve user and session data
|
|
console.warn('GetCurrentSessionUseCase: Method not implemented.');
|
|
return null;
|
|
}
|
|
}
|