import type {Server} from "../types/data.ts"; import {ServerSchema} from "../types/data.ts"; import {fetchWithToken} from "./repo.ts"; export class DataRepo { constructor(private token: string) {} public async getServer(): Promise { return await fetchWithToken(this.token, "/data/server").then(value => value.json()).then(value => ServerSchema.parse(value)); } }