aboutsummaryrefslogtreecommitdiff
path: root/cmd/root.go
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-06-16 23:47:50 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-06-16 23:47:50 +0530
commitd48bd9998de57d99d13c702b783d1c83cdd15629 (patch)
treee36b52d4327d28e6787a5065c4bd556bad076b41 /cmd/root.go
parentc45cb6ebe10084d10f4fcf6189f26199f0913402 (diff)
added help messages
Diffstat (limited to 'cmd/root.go')
-rw-r--r--cmd/root.go20
1 files changed, 10 insertions, 10 deletions
diff --git a/cmd/root.go b/cmd/root.go
index 0914da1..2ac48d6 100644
--- a/cmd/root.go
+++ b/cmd/root.go
@@ -28,16 +28,16 @@ var rootCmd = &cobra.Command{
Use: "macli",
Short: "macli - Unofficial CLI-Based MyAnimeList Client.",
Long: "macli is an unofficial MyAnimeClient for use inside the terminal.\n" +
-"\n" +
-"\x1b[34mmacli Copyright (C) 2022 Vidhu Kant Sharma <vidhukant@vidhukant.xyz>\n" +
-"This program comes with ABSOLUTELY NO WARRANTY;\n" +
-"This is free software, and you are welcome to redistribute it\n" +
-"under certain conditions; For details refer to the GNU General Public License.\n" +
-"You should have received a copy of the GNU General Public License\n" +
-"along with this program. If not, see <https://www.gnu.org/licenses/>.\x1b[0m\n" +
-"\n" +
-"\x1b[35mPlease report any bugs on the GitHub page https://github.com/MikunoNaka/macli\n" +
-"or through email: vidhukant@vidhukant.xyz\x1b[0m\n",
+ "\n" +
+ "\x1b[34mmacli Copyright (C) 2022 Vidhu Kant Sharma <vidhukant@vidhukant.xyz>\n" +
+ "This program comes with ABSOLUTELY NO WARRANTY;\n" +
+ "This is free software, and you are welcome to redistribute it\n" +
+ "under certain conditions; For details refer to the GNU General Public License.\n" +
+ "You should have received a copy of the GNU General Public License\n" +
+ "along with this program. If not, see <https://www.gnu.org/licenses/>.\x1b[0m\n" +
+ "\n" +
+ "\x1b[35mPlease report any bugs on the GitHub page: https://github.com/MikunoNaka/macli\n" +
+ "or through email: vidhukant@vidhukant.xyz\x1b[0m\n",
}
func Execute() {