aya/usage.go
yakumo.izuru 6d135bb68c 風神「嵐の日」
git-svn-id: file:///srv/svn/repo/aya/trunk@89 cec141ff-132a-4243-88a5-ce187bd62f94
2025-04-17 14:06:12 +00:00

19 lines
542 B
Go

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://suzunaan.yakumo.dev/aya/")
fmt.Println("Repository: https://svn.yakumo.dev/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")
}