9 lines
164 B
TypeScript
9 lines
164 B
TypeScript
import { authenticate } from "./routes/authenticate.ts";
|
|
|
|
export * from "./errors.ts";
|
|
export * from "./strategies.ts";
|
|
|
|
export const routes = {
|
|
authenticate,
|
|
};
|