deno_hello/src/index.ts
2021-02-19 15:58:13 +01:00

5 lines
217 B
TypeScript

import { ValidationError } from "./errors/exceptions.ts";
import { ID } from "./types/id.ts";
import { sayHello, sayRandomHello } from "./usecases/hello.ts";
export { ID, sayHello, sayRandomHello, ValidationError };