mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
12 lines
307 B
TypeScript
12 lines
307 B
TypeScript
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */
|
|
import sendRequest from "services";
|
|
import endpoints from "utilities/endpoints";
|
|
|
|
export default {
|
|
getAppleAPNInfo: () => {
|
|
const { MDM_APPLE } = endpoints;
|
|
const path = MDM_APPLE;
|
|
return sendRequest("GET", path);
|
|
},
|
|
};
|