Mercurial > yakumo_izuru > aya
view usage.go @ 90:82986500ae71 draft default tip
Update repository URLs
author | yakumo.izuru |
---|---|
date | Thu, 15 May 2025 01:25:32 +0000 |
parents | 01ae2ad18ed1 |
children |
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://suzunaan.yakumo.dev/aya") fmt.Println("Repository: https://svn.yakumo.dev/repo/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") }