types.go 227 B

1234567891011121314
  1. package server
  2. import (
  3. hertz "github.com/cloudwego/hertz/pkg/app/server"
  4. "godash/hub"
  5. )
  6. type Server struct {
  7. Router *hertz.Hertz
  8. Hub *hub.Hub
  9. Port int
  10. PageUrl string `mapstructure:"PAGE_URL"`
  11. Title string
  12. }