aboutsummaryrefslogtreecommitdiff
path: root/api/glossary.ts
blob: 0b16e48a9476edf9507be5b018acc0e957a47820 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import APIBase from "./base.ts";

export default class Glossary extends APIBase {
  constructor() {
    super();
  }

  dict(name: string): Array<string> {
    return this.all();
  }

  all(): Array<string> {
    return [];
  }
}