2024-02-17 12:40:22 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"git.lumeweb.com/LumeWeb/portal/api/account"
|
|
|
|
"git.lumeweb.com/LumeWeb/portal/api/registry"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2024-03-17 12:36:32 +00:00
|
|
|
registry.RegisterEntry(registry.APIEntry{
|
2024-02-17 12:40:22 +00:00
|
|
|
Key: "account",
|
|
|
|
Module: account.Module,
|
|
|
|
})
|
|
|
|
}
|