view usage.go @ 81:6ce24b93c8d0 draft

I keep inserting random bugs Signed-off-by: Izuru Yakumo <yakumo.izuru@chaotic.ninja>
author yakumo.izuru
date Tue, 12 Dec 2023 14:27:29 +0000
parents 7b122b71fcfa
children d8c30f64e301
line wrap: on
line source

package aya

import (
	"fmt"
)

// This function is called by the `aya help` subcommand
func PrintUsage() {
	fmt.Printf("aya/%v\n", PrintFullVersion())
	fmt.Println("Homepage: https://aya.chaotic.ninja")
	fmt.Println("Repository: https://git.chaotic.ninja/yakumo.izuru/aya")
	fmt.Println("==")
	fmt.Println("build [file] · (Re)build a site or a file in particular")
	fmt.Println("clean · Remove the generated .pub directory")
	fmt.Println("==")
	fmt.Println("For more information please read the manual page")
	fmt.Println("man aya")
}