Skip to content

Instantly share code, notes, and snippets.

@r14152
Created August 16, 2020 15:52
Show Gist options
  • Save r14152/28e5a00530ddf99e86e1be9cb5dbedec to your computer and use it in GitHub Desktop.
Save r14152/28e5a00530ddf99e86e1be9cb5dbedec to your computer and use it in GitHub Desktop.
// Copyright 2020 Douyu
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"log"
"github.com/douyu/jupiter"
compound_registry "github.com/douyu/jupiter/pkg/registry/compound"
etcdv3_registry "github.com/douyu/jupiter/pkg/registry/etcdv3"
"github.com/douyu/jupiter/pkg/server"
"github.com/douyu/jupiter/pkg/server/xgin"
"github.com/gin-gonic/gin"
)
func main() {
app, err := jupiter.New()
if err != nil {
log.Fatal(err)
}
app.SetRegistry(
compound_registry.New(
etcdv3_registry.StdConfig("test").Build(),
),
)
app.Run(startHTTPServer())
}
func startHTTPServer() server.Server {
server := xgin.DefaultConfig().Build()
server.GET("/hello", func(ctx *gin.Context) {
ctx.JSON(200, "hello jupiter")
})
return server
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment