Restructuring the Project
Updating dependencies
This commit is contained in:
6
Backend/src/api/oauth/public.ts
Normal file
6
Backend/src/api/oauth/public.ts
Normal file
@ -0,0 +1,6 @@
|
||||
import { Request, Response } from "express";
|
||||
import { public_key } from "../../keys";
|
||||
|
||||
export default function Public(req: Request, res: Response) {
|
||||
res.json({ public_key: public_key });
|
||||
}
|
Reference in New Issue
Block a user