14 lines
223 B
Go
14 lines
223 B
Go
|
package api
|
||
|
|
||
|
import (
|
||
|
"git.lumeweb.com/LumeWeb/portal/api/account"
|
||
|
"git.lumeweb.com/LumeWeb/portal/api/registry"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
registry.Register(registry.APIEntry{
|
||
|
Key: "account",
|
||
|
Module: account.Module,
|
||
|
})
|
||
|
}
|