19 lines
284 B
Go
Executable File
19 lines
284 B
Go
Executable File
package hentaihand
|
|
|
|
import (
|
|
"goyomi/internal/registry"
|
|
base "goyomi/sources/base/hentaihand"
|
|
)
|
|
|
|
func New() *base.Source {
|
|
return base.New(base.Config{
|
|
Name: "HentaiHand",
|
|
BaseURL: "https://hentaihand.com",
|
|
Lang: "all",
|
|
})
|
|
}
|
|
|
|
func init() {
|
|
registry.Register(New())
|
|
}
|