Skip to content

Commit f3a43fe

Browse files
committed
feat: support read config file from stdin
via `-f -`
1 parent 9a95920 commit f3a43fe

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

main.go

+8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import (
55
"encoding/base64"
66
"flag"
77
"fmt"
8+
"io"
89
"net"
910
"os"
1011
"os/signal"
@@ -99,6 +100,13 @@ func main() {
99100
log.Fatalln("Initial configuration error: %s", err.Error())
100101
return
101102
}
103+
} else if configFile == "-" {
104+
var err error
105+
configBytes, err = io.ReadAll(os.Stdin)
106+
if err != nil {
107+
log.Fatalln("Initial configuration error: %s", err.Error())
108+
return
109+
}
102110
} else {
103111
if configFile != "" {
104112
if !filepath.IsAbs(configFile) {

0 commit comments

Comments
 (0)