mirror of
https://github.com/NohamR/lanyard-profile-readme.git
synced 2026-05-25 20:00:40 +00:00
10 lines
199 B
TypeScript
10 lines
199 B
TypeScript
"use server";
|
|
import redis from "@/utils/redis";
|
|
|
|
export async function getUserCount() {
|
|
let users = await redis.hgetall("users");
|
|
let count = Object.keys(users);
|
|
|
|
return count.length;
|
|
}
|