14 lines
230 B
Go
14 lines
230 B
Go
package server
|
|
|
|
import (
|
|
"github.com/go-chi/chi/v5"
|
|
"godash/hub"
|
|
)
|
|
|
|
type Server struct {
|
|
Router *chi.Mux
|
|
Hub *hub.Hub
|
|
Port int
|
|
AllowedHosts []string `mapstructure:"ALLOWED_HOSTS"`
|
|
Swagger bool
|
|
}
|