Skip to content

Commit edab23d

Browse files
Formatted with gofmt
1 parent 3f79bb4 commit edab23d

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

config/app.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ package config
22

33
/* app parameters */
44
type App struct {
5-
Name string `yaml:"name,omitempty"`
6-
Version string `yaml:"version,omitempty"`
7-
DebugMode bool `yaml:"debug_mode,omitempty"`
8-
SessionTimeout int `yaml:"session_timeout,omitempty"`
5+
Name string `yaml:"name,omitempty"`
6+
Version string `yaml:"version,omitempty"`
7+
DebugMode bool `yaml:"debug_mode,omitempty"`
8+
SessionTimeout int `yaml:"session_timeout,omitempty"`
99
}
1010

1111
/* normalization function */

internal/session/model.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import (
88

99
/* session struct for a user */
1010
type Session struct {
11-
Username string
12-
CurrentWorkingDir string
13-
Expiry time.Time
14-
Timer *time.Timer
15-
TransactionQueue *list.List
16-
Mutex sync.Mutex
11+
Username string
12+
CurrentWorkingDir string
13+
Expiry time.Time
14+
Timer *time.Timer
15+
TransactionQueue *list.List
16+
Mutex sync.Mutex
1717
}

0 commit comments

Comments
 (0)