1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/integration/plugin/logging/cmd/discard/main.go

23 lines
291 B
Go
Raw Normal View History

package main
import (
"net"
"net/http"
)
func main() {
l, err := net.Listen("unix", "/run/docker/plugins/plugin.sock")
if err != nil {
panic(err)
}
mux := http.NewServeMux()
handle(mux)
server := http.Server{
Addr: l.Addr().String(),
Handler: mux,
}
server.Serve(l)
}