Skip to content

Commit

Permalink
added buy-ins
Browse files Browse the repository at this point in the history
  • Loading branch information
RyamL1221 committed Dec 9, 2024
1 parent 324266a commit 276577f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions app/lib/api/buy-ins.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
'use server';

import { ENDPOINTS } from './endpoints';

export async function GetBuyIns() {
const resp = await fetch(ENDPOINTS.getBuyIns, { method: 'POST' });
return resp.json();
}

0 comments on commit 276577f

Please sign in to comment.