Conditions | 1 |
Total Lines | 11 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | package main |
||
58 | func help() { |
||
59 | fmt.Printf( |
||
60 | `You have to type sitemap url and output file name |
||
61 | Usage: checker -uri=http://sitename.com/sitemap.xml -out=sitemap.xml |
||
62 | Parameters: |
||
63 | -out: (string) output file name for valid xml |
||
64 | -uri: (string) sitemap or sitemapindex uri |
||
65 | -index: (bool) uri is sitemapindex or not |
||
66 | `, |
||
67 | ) |
||
68 | os.Exit(1) |
||
69 | } |
||
70 |