better-auth
Version:
The most comprehensive authentication framework for TypeScript.
16 lines (15 loc) • 334 B
JavaScript
//#region src/plugins/api-key/client.ts
const apiKeyClient = () => {
return {
id: "api-key",
$InferServerPlugin: {},
pathMethods: {
"/api-key/create": "POST",
"/api-key/delete": "POST",
"/api-key/delete-all-expired-api-keys": "POST"
}
};
};
//#endregion
export { apiKeyClient };
//# sourceMappingURL=client.mjs.map