rename access to license

This commit is contained in:
Ajay
2022-09-02 13:54:09 -04:00
parent af2ef3d6a5
commit 420317a18c

View File

@@ -26,7 +26,7 @@ export async function generateTokenRequest(req: GenerateTokenRequest, res: Respo
if (licenseKey) { if (licenseKey) {
return res.status(200).send(` return res.status(200).send(`
<h1> <h1>
Your access key: Your license key:
</h1> </h1>
<p> <p>
<b> <b>
@@ -40,7 +40,7 @@ export async function generateTokenRequest(req: GenerateTokenRequest, res: Respo
} else { } else {
return res.status(401).send(` return res.status(401).send(`
<h1> <h1>
Failed to generate an access key Failed to generate an license key
</h1> </h1>
`); `);
} }