19 lines
279 B
Go
Executable File
19 lines
279 B
Go
Executable File
package mangataro
|
|
|
|
import (
|
|
"goyomi/internal/registry"
|
|
base "goyomi/sources/base/mangataro"
|
|
)
|
|
|
|
func New() *base.Source {
|
|
return base.New(base.Config{
|
|
Name: "MangaTaro",
|
|
BaseURL: "https://mangataro.org",
|
|
Lang: "en",
|
|
})
|
|
}
|
|
|
|
func init() {
|
|
registry.Register(New())
|
|
}
|