Made Menu look a bit nicer, added function to add new Manga. Extracted Handler functions to handler.go, fixed bug where new Title would crash

This commit is contained in:
Pablu23
2024-02-23 13:14:56 +01:00
parent 9bc483afb3
commit cd26d937aa
5 changed files with 311 additions and 203 deletions

11
Makefile Normal file
View File

@@ -0,0 +1,11 @@
run: develop
bin/develop
develop:
go build -tags Develop -o bin/develop cmd/mangaGetter/main.go
release:
go build -o bin/MangaGetter_unix cmd/mangaGetter/main.go
win-amd64:
GOOS=windows GOARCH=amd64 go build -o bin/MangaGetter-amd64_windows.exe cmd/mangaGetter/main.go