package server import ( "net/http" ) func CreateServer(addr string) *http.Server { server := &http.Server{ Addr: addr, } return server }