godash/server/types.go
2022-10-27 18:50:12 +02:00

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
}