Files
goyomi/sources/en/lunatoons/lunatoons.go
T
achmad 1f7e229493 phase4: add standalone source wrappers and mark checklist progress
Register new all/en standalone wrappers from base sources and add initial smoke tests; several sources are still unverified in live environment.
2026-05-11 13:36:36 +07:00

19 lines
278 B
Go

package lunatoons
import (
"goyomi/internal/registry"
base "goyomi/sources/base/keyoapp"
)
func New() *base.Source {
return base.New(base.Config{
Name: "Luna Toons",
BaseURL: "https://lunatoons.org",
Lang: "en",
})
}
func init() {
registry.Register(New())
}