package manhuaplus import ( "goyomi/internal/registry" base "goyomi/sources/base/madara" ) func New() *base.Source { return base.New(base.Config{ Name: "ManhuaPlus", BaseURL: "https://manhuaplus.com", Lang: "en", PageListParseSelector: ".read-container img", }) } func init() { registry.Register(New()) }