Skip to content

Commit d053cce

Browse files
committed
go fmt
1 parent 5879cb3 commit d053cce

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

config.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ import (
1616
)
1717

1818
type config struct {
19-
socketPath string
19+
socketPath string
2020
powershellPath string
21-
foreground bool
22-
verbose bool
23-
stop bool
24-
logFile string
25-
version bool
21+
foreground bool
22+
verbose bool
23+
stop bool
24+
logFile string
25+
version bool
2626
}
2727

2828
var version = "(development version)"
@@ -77,7 +77,7 @@ func newConfig() *config {
7777
return c
7878
}
7979

80-
func (c *config) start() (context.Context) {
80+
func (c *config) start() context.Context {
8181
if c.version {
8282
fmt.Printf("wsl2-ssh-agent %s\n", version)
8383
os.Exit(0)

server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
)
1313

1414
type server struct {
15-
listener net.Listener
15+
listener net.Listener
1616
powershellPath string
1717
}
1818

0 commit comments

Comments
 (0)