// DO NOT EDIT! This file is generated automaticaly with npm run generate-routes import Router from "@koa/router"; import { mount } from "@sealcode/sealgen"; import * as URLs from "./urls.js"; import { default as Components } from "./components.sreact.js"; import { default as Hello } from "./hello.page.js"; import { default as Logout } from "./logout.redirect.js"; import { default as SignIn } from "./signIn.form.js"; import { default as SignUp } from "./signUp.form.js"; import { default as Todo } from "./todo.form.js"; export default function mountAutoRoutes(router: Router) { mount(router, URLs.ComponentsURL, Components); mount(router, URLs.HelloURL, Hello); mount(router, URLs.LogoutURL, Logout); mount(router, URLs.SignInURL, SignIn); mount(router, URLs.SignUpURL, SignUp); mount(router, URLs.TodoURL, Todo); }