portal/protocols/protocols.go

9 lines
183 B
Go
Raw Normal View History

2024-01-12 00:11:53 +00:00
package protocols
2024-01-16 01:10:15 +00:00
import "git.lumeweb.com/LumeWeb/portal/interfaces"
func Init(registry interfaces.ProtocolRegistry) error {
registry.Register("s5", NewS5Protocol())
2024-01-12 00:11:53 +00:00
return nil
}