Files
goyomi/sources/en/galaxymanga/galaxymanga.go
T
achmad e3881f3a8e feat: port 10 en/ sources (9 Madara, 1 MadTheme)
All sources either have site issues (wrong theme, 404, Cloudflare ban)
or return unexpected HTML — no code bugs in the port itself:
- petrotechsociety.org — 0 results (not a standard Madara site)
- woopread.com — HTTP 404
- hentaixcomic.com — 0 results
- hentaixyuri.com — 0 results
- apcomics.org — Cloudflare IP banned / 403
- manhuafast.net — 0 results
- novelcrow.com — Cloudflare IP banned
- mangafree.info — 0 results
- mangaka.cc — 0 results
- galaxymanga.io — HTTP 404 (MangaThemesia)
2026-05-14 23:24:31 +07:00

17 lines
283 B
Go

package galaxymanga
import (
"goyomi/internal/registry"
base "goyomi/sources/base/madtheme"
)
func New() *base.Source {
return base.New(base.Config{
Name: "Galaxy Manga",
BaseURL: "https://galaxymanga.io",
Lang: "en",
})
}
func init() { registry.Register(New()) }