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

19 lines
267 B
Go
Executable File

package kemono
import (
"goyomi/internal/registry"
base "goyomi/sources/base/kemono"
)
func New() *base.Source {
return base.New(base.Config{
Name: "Kemono",
BaseURL: "https://kemono.cr",
Lang: "all",
})
}
func init() {
registry.Register(New())
}