Skip to main content
Module

x/fastro/templates/config.ts

Fast and simple web application framework for deno
Go to Latest
File
import { v4 } from "../deps.ts";
const uuid = v4.generate();const regid = `${uuid}`;
export function config(email: string) { const yaml = `email: ${email}regid: ${regid}`; return yaml;}