Merge pull request #53 from ssb-ngi-pointer/clarify-handlers

disambiguate "handlers" package
This commit is contained in:
Henry 2021-03-02 14:23:08 +01:00 committed by GitHub
commit d85f2e4a3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 6 additions and 2 deletions

4
muxrpc/doc.go Normal file
View File

@ -0,0 +1,4 @@
// Package muxrpc contains the muxrpc handler packages for the room server.
//
// The implementation the actual multiplexing implementation is go.cryptoscope.co/muxrpc.
package muxrpc

View File

@ -10,9 +10,9 @@ import (
"go.cryptoscope.co/muxrpc/v2"
refs "go.mindeco.de/ssb-refs"
"github.com/ssb-ngi-pointer/go-ssb-room/handlers/tunnel/server"
"github.com/ssb-ngi-pointer/go-ssb-room/handlers/whoami"
"github.com/ssb-ngi-pointer/go-ssb-room/internal/network"
"github.com/ssb-ngi-pointer/go-ssb-room/muxrpc/tunnel/server"
"github.com/ssb-ngi-pointer/go-ssb-room/muxrpc/whoami"
)
func (s *Server) initNetwork() error {