不要になったファイル削除

This commit is contained in:
rca 2024-07-17 08:25:03 +09:00
parent d9db668f16
commit 96fd39fdaf

View File

@ -1,38 +0,0 @@
import { TokenResponse } from "./models";
const Configs = Object.freeze({
API_BASE: 'https://kidshift-beta.nem.one',
});
enum Method {
GET = 'GET',
POST = 'POST',
PUT = 'PUT',
DELETE = 'DELETE',
}
const Endpoints = Object.freeze({
// Auth
LOGIN: {
method: Method.POST,
endpoint: '/parent/auth/login',
response: {} as TokenResponse,
request: {} as { code: string },
},
});
interface EndpointItem {
method: Method,
endpoint: string,
response: any,
request?: any,
requireAuth?: boolean,
}
export {
Configs,
Endpoints,
Method,
EndpointItem,
}