This mainly adds a main.go file in the project root so it's easier to
install pcap-broker using `go install`:
$ go install github.com/fox-it/pcap-broker@latest
Or install the main branch:
$ go install github.com/fox-it/pcap-broker@main
10 lines
123 B
Go
10 lines
123 B
Go
package main
|
|
|
|
import (
|
|
pcap_broker "github.com/fox-it/pcap-broker/cmd/pcap-broker"
|
|
)
|
|
|
|
func main() {
|
|
pcap_broker.Main()
|
|
}
|