Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 751 Bytes

File metadata and controls

31 lines (22 loc) · 751 Bytes

Quickstart

Connect to OpenDecree and read typed configuration values.

What this demonstrates

  • Creating a gRPC connection to the decree server
  • Reading values with typed getters (GetString, GetBool, GetInt, GetDuration, GetFloat)
  • No string parsing — values come back as native Go types

Run it

go run .

Expected output

app.name:           Acme Corp App
app.debug:          false
server.rate_limit:  100
server.timeout:     30s
payments.fee_rate:  0.025

Learn more