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