File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -2,20 +2,21 @@ package main
22
33import (
44 "context"
5- feast "github.com/feast-dev/feast/sdk/go"
6- "github.com/feast-dev/feast/sdk/go/protos/feast/serving"
7- "github.com/feast-dev/feast/sdk/go/protos/feast/types"
8- "github.com/kelseyhightower/envconfig"
95 "log"
106 "net/http"
117 "strconv"
128 "time"
9+
10+ feast "github.com/feast-dev/feast/sdk/go"
11+ "github.com/feast-dev/feast/sdk/go/protos/feast/serving"
12+ "github.com/feast-dev/feast/sdk/go/protos/feast/types"
13+ "github.com/kelseyhightower/envconfig"
1314)
1415
1516type Config struct {
16- FeastServingHost string `default:"localhost"`
17- FeastServingPort int `default:"6566"`
18- ListenPort string `default:"8080"`
17+ FeastServingHost string `default:"localhost" split_words:"true" `
18+ FeastServingPort int `default:"6566" split_words:"true" `
19+ ListenPort string `default:"8080" split_words:"true" `
1920}
2021
2122func main () {
You can’t perform that action at this time.
0 commit comments