godash/server/types.go
2022-11-27 11:25:57 +01:00

14 lines
227 B
Go

package server
import (
hertz "github.com/cloudwego/hertz/pkg/app/server"
"godash/hub"
)
type Server struct {
Router *hertz.Hertz
Hub *hub.Hub
Port int
PageUrl string `mapstructure:"PAGE_URL"`
Title string
}