all repos — vite @ 87bb6a2abe44450fb6b71dd8a0c4b2479a3d753d

a fast (this time, actually) and minimal static site generator

utils.go (view raw)

 1package main
 2
 3import (
 4	"fmt"
 5	"os"
 6	"strings"
 7)
 8
 9func printMsg(s ...string) {
10	fmt.Println("vite:", strings.Join(s, " "))
11}
12
13func printErr(e error) {
14	fmt.Fprintln(os.Stderr, "error:", e)
15}