diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-06-16 13:43:19 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-06-16 13:43:19 +0530 |
commit | e93a197b6f47ed45e5f2dbe10762d6344a3e32c7 (patch) | |
tree | 7aadb4659b288fa3293360a6804f57c6c2e6c050 /mal/delete.go | |
parent | 0c4f89f08f4fc557323922db238f73dd05d8f3d1 (diff) |
added delete functionality
Diffstat (limited to 'mal/delete.go')
-rw-r--r-- | mal/delete.go | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/mal/delete.go b/mal/delete.go new file mode 100644 index 0000000..27ffbe6 --- /dev/null +++ b/mal/delete.go @@ -0,0 +1,40 @@ +/* +macli - Unofficial CLI-Based MyAnimeList Client +Copyright © 2022 Vidhu Kant Sharma <vidhukant@vidhukant.xyz> + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see <http://www.gnu.org/licenses/>. +*/ + +package mal + +import ( + "fmt" + // "os" + a "github.com/MikunoNaka/MAL2Go/anime" + m "github.com/MikunoNaka/MAL2Go/manga" +) + +func DeleteAnime(anime a.Anime) { + res := userAnimeClient.DeleteAnime(anime.Id) + if res != "200" { + fmt.Println("Error: MyAnimeList Returned " + res + " while deleting " + anime.Title) + } +} + +func DeleteManga(manga m.Manga) { + res := userMangaClient.DeleteManga(manga.Id) + if res != "200" { + fmt.Println("Error: MyAnimeList Returned " + res + " while deleting " + manga.Title) + } +} |