Files
goyomi/sources/all/mangataro/mangataro.go
T
2026-05-11 06:48:23 +00:00

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())
}