feat: add batch 5 base-source wrappers (Madara, MangaThemesia, Keyoapp, MangAdventure)

arcrelight (MangAdventure), baektoons/fablescans (MangaThemesia), epicmanga/ero18x/evilflowers
(Madara), erisscans (Keyoapp); fix wrong HttpSource annotations in phase4 doc.
This commit is contained in:
achmad
2026-05-14 07:37:21 +07:00
parent 85f34b1b23
commit ae56f3037d
9 changed files with 140 additions and 15 deletions
+16
View File
@@ -0,0 +1,16 @@
package arcrelight
import (
"goyomi/internal/registry"
base "goyomi/sources/base/mangadventure"
)
func New() *base.Source {
return base.New(base.Config{
Name: "Arc-Relight",
BaseURL: "https://arc-relight.com",
Lang: "en",
})
}
func init() { registry.Register(New()) }