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