File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ package config
22
33/* app parameters */
44type 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 */
Original file line number Diff line number Diff line change @@ -8,10 +8,10 @@ import (
88
99/* session struct for a user */
1010type 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}
You can’t perform that action at this time.
0 commit comments