17 lines
265 B
Go
17 lines
265 B
Go
package toon18
|
|
|
|
import (
|
|
"goyomi/internal/registry"
|
|
base "goyomi/sources/base/madara"
|
|
)
|
|
|
|
func New() *base.Source {
|
|
return base.New(base.Config{
|
|
Name: "Toon18",
|
|
BaseURL: "https://toon18.to",
|
|
Lang: "en",
|
|
})
|
|
}
|
|
|
|
func init() { registry.Register(New()) }
|