You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
438 B

package clientserver
import (
"fmt"
"log"
"net/http"
customtypes "sample-choose-ad/cmd/custom_types"
"time"
)
2 years ago
const MAX_TIME_PER_REQUEST = time.Duration(250 * time.Millisecond)
func StartServer(port string, partners []customtypes.PartnersAddress) {
2 years ago
h := http.TimeoutHandler(handleRequest(partners), MAX_TIME_PER_REQUEST, "")
http.Handle("/placements/request", h)
log.Fatal(http.ListenAndServe(fmt.Sprintf(":%v", port), nil))
}