harmony/src/models/rest.ts

12 lines
196 B
TypeScript

import { Client } from "./client.ts";
class Rest {
client: Client
constructor(client: Client) {
this.client = client
}
//TODO: make endpoints function
}
export { Rest }