UNPKG

create-cf-planetscale-app

Version:

Create a Cloudflare workers app for building production ready RESTful APIs using Hono

10 lines (7 loc) 266 B
export const roleRights = { user: [], admin: ['getUsers', 'manageUsers'] } as const export const roles = Object.keys(roleRights) as Role[] export type Permission = (typeof roleRights)[keyof typeof roleRights][number] export type Role = keyof typeof roleRights