github.com/mutagen-io/mutagen@v0.18.0-rc1/cmd/mutagen/daemon/protocols.go (about) 1 //go:build mutagencli 2 3 package daemon 4 5 // We only register protocol handlers when building the Mutagen CLI, that way 6 // Mutagen command line code can be embedded into other tools that might want to 7 // register their own handlers. 8 9 import ( 10 _ "github.com/mutagen-io/mutagen/pkg/forwarding/protocols/docker" 11 _ "github.com/mutagen-io/mutagen/pkg/forwarding/protocols/local" 12 _ "github.com/mutagen-io/mutagen/pkg/forwarding/protocols/ssh" 13 _ "github.com/mutagen-io/mutagen/pkg/synchronization/protocols/docker" 14 _ "github.com/mutagen-io/mutagen/pkg/synchronization/protocols/local" 15 _ "github.com/mutagen-io/mutagen/pkg/synchronization/protocols/ssh" 16 )