format codebase with prettier

This commit is contained in:
2026-01-04 16:17:36 +01:00
parent 77f15b6dd1
commit e3f7a778c7
63 changed files with 786 additions and 542 deletions

View File

@@ -1,4 +1,4 @@
import jwt from 'jsonwebtoken';
import jwt from "jsonwebtoken";
export interface TokenPayload {
userId: string;
@@ -10,17 +10,17 @@ export interface JWTConfig {
expiresIn: string;
}
const JWT_SECRET = process.env.JWT_SECRET || 'your-secret-key';
const JWT_EXPIRES_IN = process.env.JWT_EXPIRES_IN || '1h';
const JWT_SECRET = process.env.JWT_SECRET || "your-secret-key";
const JWT_EXPIRES_IN = process.env.JWT_EXPIRES_IN || "1h";
export function signToken(payload: TokenPayload): string {
throw new Error('Not implemented');
throw new Error("Not implemented");
}
export function verifyToken(token: string): TokenPayload {
throw new Error('Not implemented');
throw new Error("Not implemented");
}
export function decodeToken(token: string): TokenPayload | null {
throw new Error('Not implemented');
throw new Error("Not implemented");
}