├── .gitignore ├── LICENSE ├── README.md ├── cookie.go ├── download.go ├── go.mod ├── go.sum ├── handler.go ├── main.go ├── makefile ├── parser.go └── token.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | build.sh 3 | release/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0re100/BahamutAnimeDownloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0re100/BahamutAnimeDownloader/HEAD/README.md -------------------------------------------------------------------------------- /cookie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0re100/BahamutAnimeDownloader/HEAD/cookie.go -------------------------------------------------------------------------------- /download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0re100/BahamutAnimeDownloader/HEAD/download.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0re100/BahamutAnimeDownloader/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0re100/BahamutAnimeDownloader/HEAD/go.sum -------------------------------------------------------------------------------- /handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0re100/BahamutAnimeDownloader/HEAD/handler.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0re100/BahamutAnimeDownloader/HEAD/main.go -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0re100/BahamutAnimeDownloader/HEAD/makefile -------------------------------------------------------------------------------- /parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0re100/BahamutAnimeDownloader/HEAD/parser.go -------------------------------------------------------------------------------- /token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c0re100/BahamutAnimeDownloader/HEAD/token.go --------------------------------------------------------------------------------