portal/api/s5.go

16 lines
228 B
Go

//go:build s5
package api
import (
"git.lumeweb.com/LumeWeb/portal/api/registry"
"git.lumeweb.com/LumeWeb/portal/api/s5"
)
func init() {
registry.RegisterEntry(registry.APIEntry{
Key: "s5",
Module: s5.Module,
})
}