13 lines
212 B
Go
13 lines
212 B
Go
package plugins
|
|
|
|
import (
|
|
"ymgb/database"
|
|
|
|
"git.nix13.pw/scuroneko/laniakea"
|
|
)
|
|
|
|
func RegisterRelations() *laniakea.Plugin[database.Context] {
|
|
p := laniakea.NewPlugin[database.Context]("Relations")
|
|
return p
|
|
}
|