diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-06-16 23:01:52 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-06-16 23:01:52 +0530 |
commit | c45cb6ebe10084d10f4fcf6189f26199f0913402 (patch) | |
tree | ecc39f3e2db66903ebea06b54edbd1423db7a09a /cmd/root.go | |
parent | 24ea0db80befd3bf5a67781084f48f0fa764d74f (diff) |
renamed Init to init function in mal because it should be called automatically
Diffstat (limited to 'cmd/root.go')
-rw-r--r-- | cmd/root.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cmd/root.go b/cmd/root.go index e23a221..0914da1 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -27,6 +27,17 @@ import ( 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", } func Execute() { |