chore: remove unused actions directory

This commit is contained in:
Dorian Niemiec 2024-09-07 09:53:53 +02:00
parent 6f1c4affed
commit 5787fe5110

View file

@ -1,13 +0,0 @@
// 'use server';
// import { NextApiRequest } from 'next';
// import { NextResponse } from 'next/server';
// export async function POST(req: NextApiRequest) {
// const { username, password } = await req.body;
// if (username === process.env.USERNAME && password === process.env.PASSWORD) {
// return NextResponse.json({ success: true });
// } else {
// return NextResponse.json({ success: false });
// }
// }