import AbstractView from "./abstracts/AbstractView.js"; import { lang } from '../index.js'; export default class extends AbstractView { constructor(params) { super(params, '404WindowTitle'); } async getHtml() { return `

404 Bozo

Git gud

`; } }