source: code/trunk/usage.go@ 86

Last change on this file since 86 was 84, checked in by Izuru Yakumo, 15 months ago

何をしていたか忘れてしまった

Signed-off-by: Izuru Yakumo <yakumo.izuru@…>

File size: 542 bytes
Line 
1package aya
2
3import (
4 "fmt"
5)
6
7// This function is called by the `aya help` subcommand
8func PrintUsage() {
9 fmt.Printf("aya/%v\n", PrintFullVersion())
10 fmt.Println("Homepage: https://aya.chaotic.ninja")
11 fmt.Println("Repository: https://git.chaotic.ninja/usr/yakumo_izuru/aya")
12 fmt.Println("==")
13 fmt.Println("build [file] · (Re)build a site or a file in particular")
14 fmt.Println("clean · Remove the generated .pub directory")
15 fmt.Println("==")
16 fmt.Println("For more information please read the manual page")
17 fmt.Println("man aya")
18}
Note: See TracBrowser for help on using the repository browser.