1 parent bdfaab3 commit f852d7aCopy full SHA for f852d7a
1 file changed
client/config/config.go
@@ -1,9 +1,10 @@
1
package config
2
3
import (
4
- "gopkg.in/yaml.v2"
5
"io"
6
"os"
+
7
+ "gopkg.in/yaml.v2"
8
)
9
10
type Configuration struct {
@@ -13,7 +14,7 @@ type Configuration struct {
13
14
15
func ReadConfiguration(filePath string) (*Configuration, error) {
16
config := &Configuration{
- Host: "localhost",
17
+ Host: "http://localhost",
18
Port: 8090,
19
}
20
0 commit comments