deniz bektaş
This commit is contained in:
14
app/public.pgp/route.ts
Normal file
14
app/public.pgp/route.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { NextResponse } from "next/server";
|
||||
|
||||
export async function GET() {
|
||||
// Replace with your actual PGP public key
|
||||
const pgpKey = `-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||
|
||||
mQINBGX... (replace with your actual PGP public key)
|
||||
-----END PGP PUBLIC KEY BLOCK-----
|
||||
`;
|
||||
|
||||
return new NextResponse(pgpKey, {
|
||||
headers: { "Content-Type": "text/plain; charset=utf-8" },
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user