package server import ( "local/rproxy3/config" "local/rproxy3/storage" ) func New() *Server { port := config.GetPort() return &Server{ db: storage.NewMap(), addr: port, } }