3
0
Fork 0
This repository has been archived on 2024-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
ThemeParkPlus-Socket/server/server.go

14 lines
146 B
Go
Raw Normal View History

2022-08-12 19:08:47 +00:00
package server
import (
"net/http"
)
func CreateServer(addr string) *http.Server {
server := &http.Server{
Addr: addr,
}
return server
}