85f34b1b23
15 MangaCatalog en/ sources (franchise-specific read* sites), hniscantrad (PizzaReader/all), monochromescans (Monochrome), assortedscans (MangAdventure), eightmuses (EroMuse).
17 lines
295 B
Go
17 lines
295 B
Go
package assortedscans
|
|
|
|
import (
|
|
"goyomi/internal/registry"
|
|
base "goyomi/sources/base/mangadventure"
|
|
)
|
|
|
|
func New() *base.Source {
|
|
return base.New(base.Config{
|
|
Name: "Assorted Scans",
|
|
BaseURL: "https://assortedscans.com",
|
|
Lang: "en",
|
|
})
|
|
}
|
|
|
|
func init() { registry.Register(New()) }
|