1f7e229493
Register new all/en standalone wrappers from base sources and add initial smoke tests; several sources are still unverified in live environment.
20 lines
313 B
Go
20 lines
313 B
Go
package divascans
|
|
|
|
import (
|
|
"goyomi/internal/registry"
|
|
base "goyomi/sources/base/iken"
|
|
)
|
|
|
|
func New() *base.Source {
|
|
return base.New(base.Config{
|
|
Name: "Diva Scans",
|
|
BaseURL: "https://divatoon.com",
|
|
Lang: "en",
|
|
APIURL: "https://api.divatoon.com",
|
|
})
|
|
}
|
|
|
|
func init() {
|
|
registry.Register(New())
|
|
}
|