harmony/src/models/rest.ts

12 lines
184 B
TypeScript

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