Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion xrootd/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"net"

"go-hep.org/x/hep/xrootd/encoder"
"go-hep.org/x/hep/xrootd/mux"
"go-hep.org/x/hep/xrootd/internal/mux"
"go-hep.org/x/hep/xrootd/protocol"
)

Expand Down
2 changes: 1 addition & 1 deletion xrootd/mux/mux.go → xrootd/internal/mux/mux.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Example of usage:
// Fetch response.
response := <-channel
*/
package mux // import "go-hep.org/x/hep/xrootd/mux"
package mux // import "go-hep.org/x/hep/xrootd/internal/mux"

import (
"math"
Expand Down
2 changes: 1 addition & 1 deletion xrootd/mux/mux_test.go → xrootd/internal/mux/mux_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package mux // import "go-hep.org/x/hep/xrootd/mux"
package mux // import "go-hep.org/x/hep/xrootd/internal/mux"

import (
"reflect"
Expand Down