import sql from './index' /** * Count users */ export async function get_count() { const count = await sql` select count(*) from users where banned=0 ` return count }