sidecar network host

This commit is contained in:
2026-02-26 03:32:04 +00:00
parent 42abb97d7b
commit 466dc3adda
8 changed files with 310 additions and 420 deletions
+1 -1
View File
@@ -31,5 +31,5 @@ export async function sign(payload: any, expiration = '30d') {
}
export async function verify(token: string): Promise<any> {
return jwtVerify(token, JWT_SECRET!);
return jwtVerify(token, JWT_SECRET!, 'HS256');
}