]> ruderich.org/simon Gitweb - safcm/safcm.git/commitdiff
go fmt
authorSimon Ruderich <simon@ruderich.org>
Wed, 21 Apr 2021 06:28:00 +0000 (08:28 +0200)
committerSimon Ruderich <simon@ruderich.org>
Thu, 22 Apr 2021 06:06:50 +0000 (08:06 +0200)
cmd/safcm/config/config.go
rpc/conn.go

index fc01c8da1a3a61b21200c738dc771c3d134f775f..3973e82c9866f61395f2002366d08466af89b241 100644 (file)
@@ -27,9 +27,9 @@ import (
 )
 
 type Config struct {
-       DryRun   bool           `yaml:"-"` // set via command line
-       Quiet    bool           `yaml:"-"` // set via command line
-       LogLevel safcm.LogLevel `yaml:"-"` // set via command line
+       DryRun    bool           `yaml:"-"` // set via command line
+       Quiet     bool           `yaml:"-"` // set via command line
+       LogLevel  safcm.LogLevel `yaml:"-"` // set via command line
        SshConfig string         `yaml:"-"` // set via command line
 
        DetectGroups []string `yaml:"detect_groups"`
index 65226121b3e1006586335d37ed99b20ac0d6813a..626a507f7e034ce57a0e3766f1fc93412499727c 100644 (file)
@@ -32,7 +32,7 @@ type Conn struct {
        events   chan<- ConnEvent // same as Events, to publish events
        eventsWg sync.WaitGroup
 
-       debug  bool
+       debug     bool
        sshRemote string
        sshOpts   []string