ae56f3037d
arcrelight (MangAdventure), baektoons/fablescans (MangaThemesia), epicmanga/ero18x/evilflowers (Madara), erisscans (Keyoapp); fix wrong HttpSource annotations in phase4 doc.
18 lines
347 B
Go
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()) }
|