package main import ( "fmt" "net/http" "github.com/xlgmokha/x/pkg/env" "gitlab.com/gitlab-org/software-supply-chain-security/authorization/authz.d/pkg/rpc" ) func main() { bindAddr := env.Fetch("BIND_ADDR", "localhost:8080") fmt.Printf("Listening on %v\n", bindAddr) http.ListenAndServe(bindAddr, rpc.New()) }