882dd995f9
Signed-off-by: Alex Stan <90788596+Ultra980@users.noreply.github.com>
17 lines
No EOL
411 B
TypeScript
17 lines
No EOL
411 B
TypeScript
import { makeGetRequest, makePostRequest } from "./api";
|
|
|
|
export type Session = {
|
|
id: number;
|
|
right: number;
|
|
wrong: number;
|
|
total: number;
|
|
// user: string;
|
|
}
|
|
|
|
export const getSession = async (id: number): Promise<Session> => {
|
|
return makeGetRequest( `sessions/${id}/` );
|
|
}
|
|
|
|
export const postSession = async (session: Session): Promise<Session> => {
|
|
return makePostRequest( `sessions`, session );
|
|
} |