20 lines
314 B
Go
Executable File
20 lines
314 B
Go
Executable File
package renascans
|
|
|
|
import (
|
|
"goyomi/internal/registry"
|
|
base "goyomi/sources/base/iken"
|
|
)
|
|
|
|
func New() *base.Source {
|
|
return base.New(base.Config{
|
|
Name: "Renascans",
|
|
BaseURL: "https://renascans.net",
|
|
Lang: "en",
|
|
APIURL: "https://api.renascans.net",
|
|
})
|
|
}
|
|
|
|
func init() {
|
|
registry.Register(New())
|
|
}
|