Files
achmad ae56f3037d 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.
2026-05-14 07:37:21 +07:00

18 lines
347 B
Go

package fablescans
import (
"goyomi/internal/registry"
base "goyomi/sources/base/mangathemesia"
)
func New() *base.Source {
return base.New(base.Config{
Name: "Fable Scans",
BaseURL: "https://fablescans.com",
Lang: "en",
MangaURLDirectory: "/comic",
})
}
func init() { registry.Register(New()) }