diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-10-13 13:44:07 +0200 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-10-13 13:44:07 +0200 |
| commit | badac4c8dec6be7a798e891281221f7830305c88 (patch) | |
| tree | a786fbd59cf9eab7ac8389ced8954859cc433fc4 /internal/config/config.go | |
| parent | adf59e8c6cdaf050ef9cf09301111e7429ec0c37 (diff) | |
Format: Run gofumpt
Diffstat (limited to 'internal/config/config.go')
| -rw-r--r-- | internal/config/config.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/config/config.go b/internal/config/config.go index ec9afa2..1d5a201 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -6,18 +6,18 @@ import ( "io/ioutil" "path" - "github.com/eduvpn/eduvpn-common/types" "github.com/eduvpn/eduvpn-common/internal/util" + "github.com/eduvpn/eduvpn-common/types" ) type Config struct { Directory string - Name string + Name string } func (config *Config) Init(directory string, name string) { config.Directory = directory - config.Name = name + config.Name = name } func (config *Config) GetFilename() string { |
