ae56f3037d
arcrelight (MangAdventure), baektoons/fablescans (MangaThemesia), epicmanga/ero18x/evilflowers (Madara), erisscans (Keyoapp); fix wrong HttpSource annotations in phase4 doc.
18 lines
339 B
Go
18 lines
339 B
Go
package ero18x
|
|
|
|
import (
|
|
"goyomi/internal/registry"
|
|
base "goyomi/sources/base/madara"
|
|
)
|
|
|
|
func New() *base.Source {
|
|
return base.New(base.Config{
|
|
Name: "Ero18x",
|
|
BaseURL: "https://ero18x.com",
|
|
Lang: "en",
|
|
UseNewChapterEndpoint: true,
|
|
})
|
|
}
|
|
|
|
func init() { registry.Register(New()) }
|