e3881f3a8e
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)
18 lines
349 B
Go
18 lines
349 B
Go
package mangafree
|
|
|
|
import (
|
|
"goyomi/internal/registry"
|
|
base "goyomi/sources/base/madara"
|
|
)
|
|
|
|
func New() *base.Source {
|
|
return base.New(base.Config{
|
|
Name: "Mangafree",
|
|
BaseURL: "https://mangafree.info",
|
|
Lang: "en",
|
|
UseNewChapterEndpoint: true,
|
|
})
|
|
}
|
|
|
|
func init() { registry.Register(New()) }
|