You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
otto 3e6487c1d2 first commit 2 years ago
..
README.md first commit 2 years ago
config.go first commit 2 years ago
config_test.go first commit 2 years ago
go.mod first commit 2 years ago
go.sum first commit 2 years ago
polaris.yaml first commit 2 years ago
watcher.go first commit 2 years ago

README.md

Polaris Config

import (
 "log"

 "github.com/polarismesh/polaris-go"
 "github.com/go-kratos/kratos/contrib/config/polaris/v2"
)

func main() {

 configApi, err := polaris.NewConfigAPI()
 if err != nil {
  log.Fatalln(err)
 }

 source, err := New(&configApi, WithNamespace("default"), WithFileGroup("default"), WithFileName("default.yaml"))

 if err != nil {
  log.Fatalln(err)
 }
 source.Load()
}