Skip to content

Latest commit

 

History

History

cli

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
import { VERSION } from "../server/version.ts"

function readme(version: string) {
  Deno.readTextFile("./cli/tmpl.md").then((txt) =>
    console.info(txt.replaceAll("{{version}}", version))
  )
}

readme(VERSION)