19 lines
266 B
Go
Executable File
19 lines
266 B
Go
Executable File
package guya
|
|
|
|
import (
|
|
"goyomi/internal/registry"
|
|
base "goyomi/sources/base/guya"
|
|
)
|
|
|
|
func New() *base.Source {
|
|
return base.New(base.Config{
|
|
Name: "Guya",
|
|
BaseURL: "https://guya.cubari.moe",
|
|
Lang: "en",
|
|
})
|
|
}
|
|
|
|
func init() {
|
|
registry.Register(New())
|
|
}
|