Skip to main content
Module

x/fastro/cli/readme.ts

Fast and simple web application framework for deno
Go to Latest
File
import { VERSION } from "../server/version.ts";
function readme(version: string) { Deno.readTextFile("./cli/tmpl.txt").then((txt) => console.info(txt.replaceAll("{{version}}", version)) );}
readme(VERSION);