1
0
Fork 0
mirror of https://github.com/classchartsapi/classcharts-api-js.git synced 2026-05-14 11:58:13 +00:00

style: rename client files

This commit is contained in:
James Cook 2022-03-12 12:08:41 +00:00
parent bf7b8949e3
commit 92ed2f1608
4 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
export * from "./parent";
export * from "./student";
export * from "./parentClient";
export * from "./studentClient";
export * from "./types";
export * from "./dummyClient";

View file

@ -1,7 +1,7 @@
import Undici from "undici";
import type { GetPupilsResponse } from "./types";
import { ClasschartsClient } from "./client";
import { ClasschartsClient } from "./baseClient";
import { API_BASE_PARENT, BASE_URL } from "./consts";
/**
* The base client

View file

@ -1,6 +1,6 @@
import Undici from "undici";
import { API_BASE_STUDENT, BASE_URL } from "./consts";
import { ClasschartsClient } from "./client";
import { ClasschartsClient } from "./baseClient";
/**
* The base client
*/