6 lines
180 B
TypeScript
6 lines
180 B
TypeScript
import type { IGlobalVariable } from "@automatisch/types";
|
|
|
|
export default async function getWebhooks($: IGlobalVariable) {
|
|
return await $.http.get('/v2/public/api/webhooks');
|
|
}
|