mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-04-20 03:50:20 +00:00
13 lines
254 B
TypeScript
13 lines
254 B
TypeScript
"use server";
|
|
|
|
export async function getIslands() {
|
|
const res = await fetch(`${process.env.SARLINK_API_BASE_URL}/islands/`, {
|
|
method: "GET",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
});
|
|
const data = await res.json();
|
|
return data;
|
|
}
|