kidshift-skills/lambda/const.js
2024-07-16 10:29:54 +09:00

24 lines
679 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Method = exports.Endpoints = exports.Configs = void 0;
const Configs = Object.freeze({
API_BASE: 'https://kidshift-beta.nem.one',
});
exports.Configs = Configs;
var Method;
(function (Method) {
Method["GET"] = "GET";
Method["POST"] = "POST";
Method["PUT"] = "PUT";
Method["DELETE"] = "DELETE";
})(Method || (exports.Method = Method = {}));
const Endpoints = Object.freeze({
LOGIN: {
method: Method.POST,
endpoint: '/parent/auth/login',
response: {},
request: {},
},
});
exports.Endpoints = Endpoints;
//# sourceMappingURL=const.js.map