or nil if before Go 1.2 PrintLicenses prints all the licences registered by go4.org/legal for this program.
()
| 243 | |
| 244 | // PrintLicenses prints all the licences registered by go4.org/legal for this program. |
| 245 | func PrintLicenses() { |
| 246 | for _, text := range legal.Licenses() { |
| 247 | fmt.Fprintln(Stderr, text) |
| 248 | } |
| 249 | } |
| 250 | |
| 251 | // Main is meant to be the core of a command that has |
| 252 | // subcommands (modes), such as pk-put or pk. |