fetchcert/go.mod
Emmanuel BENOîT 610cbf28f8 Configuration file reading
* An example configuration file has been added.
  * The data structure that corresponds to the configuration has been
    defined, and functions to load it have been added.
  * Logging using logrus and command line arguments that configure
    logging and set the configuration file's path have been added.
  * Opening the UNIX socket has been implemented.
2021-10-30 17:07:06 +02:00

15 lines
321 B
Modula-2

module nocternity.net/go/fetchcert
go 1.17
require (
github.com/gemnasium/logrus-graylog-hook/v3 v3.0.3
github.com/karrick/golf v1.4.0
github.com/sirupsen/logrus v1.8.1
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/pkg/errors v0.8.1 // indirect
golang.org/x/sys v0.0.0-20191026070338-33540a1f6037 // indirect
)