Skip to content

Commit

Permalink
[internal][config] collect constants under one entry
Browse files Browse the repository at this point in the history
  • Loading branch information
jbygdell committed Sep 26, 2023
1 parent 902acd0 commit 7eb0211
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions sda/internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@ import (
"github.com/spf13/viper"
)

const POSIX = "posix"
const S3 = "s3"
const SFTP = "sftp"
const (
POSIX = "posix"
S3 = "s3"
SFTP = "sftp"
)

var requiredConfVars []string

Expand Down

0 comments on commit 7eb0211

Please sign in to comment.