data_workshop/main.go
2020-05-22 15:39:43 +08:00

49 lines
899 B
Go

package main
import (
"context"
"encoding/gob"
"log"
"math/rand"
"net/http"
"os"
"time"
"github.com/grpc-ecosystem/grpc-gateway/runtime"
)
var cl *KeyList = &KeyList{}
func init() {
gob.Register(KeyList{})
gob.Register(Country{})
f, err := os.OpenFile("./my.log", os.O_CREATE|os.O_RDWR, os.ModePerm)
CheckErrorPanic(err)
log.SetOutput(f)
rand.Seed(time.Now().UnixNano())
}
func main() {
ctx := context.Background()
ctx, cancel := context.WithCancel(ctx)
defer cancel()
// gserver := grpc.NewServer()
mux := runtime.NewServeMux()
RegisterNameHandlerServer(ctx, mux, &nameserver{})
RegisterCountryHandlerServer(ctx, mux, &countryserver{})
RegisterProvinceAreaCityHandlerServer(ctx, mux, &provinceserver{})
RegisterWayHandlerServer(ctx, mux, &wayserver{})
RegisterBuildingHandlerServer(ctx, mux, &buildingserver{})
log.Fatal(http.ListenAndServe(":4433", mux))
}