import { Conf } from '@/config.ts'; import type { AppController } from '@/app.ts'; /** Landing page controller. */ const indexController: AppController = (c) => { return c.text(`Please connect with a Mastodon client: ${Conf.localDomain} Ditto `); }; export { indexController };