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