ychacon | 5542d26 | 2022-02-21 14:40:38 +0100 | [diff] [blame] | 1 | module oransc.org/usecase/oduclosedloop |
| 2 | |
elinuxhenrik | 4f0b6a9 | 2022-10-21 16:33:28 +0200 | [diff] [blame^] | 3 | go 1.19 |
ychacon | 5542d26 | 2022-02-21 14:40:38 +0100 | [diff] [blame] | 4 | |
| 5 | require github.com/sirupsen/logrus v1.8.1 |
| 6 | |
| 7 | require ( |
| 8 | github.com/gorilla/mux v1.8.0 |
elinuxhenrik | fc74391 | 2022-07-29 12:49:07 +0200 | [diff] [blame] | 9 | github.com/prometheus/client_golang v1.12.2 |
ychacon | d2c54bd | 2022-02-28 13:29:06 +0100 | [diff] [blame] | 10 | github.com/stretchr/testify v1.7.0 |
ychacon | 5542d26 | 2022-02-21 14:40:38 +0100 | [diff] [blame] | 11 | ) |
| 12 | |
| 13 | require ( |
elinuxhenrik | fc74391 | 2022-07-29 12:49:07 +0200 | [diff] [blame] | 14 | github.com/beorn7/perks v1.0.1 // indirect |
| 15 | github.com/cespare/xxhash/v2 v2.1.2 // indirect |
ychacon | 5542d26 | 2022-02-21 14:40:38 +0100 | [diff] [blame] | 16 | github.com/davecgh/go-spew v1.1.1 // indirect |
elinuxhenrik | fc74391 | 2022-07-29 12:49:07 +0200 | [diff] [blame] | 17 | github.com/golang/protobuf v1.5.2 // indirect |
ychacon | d2c54bd | 2022-02-28 13:29:06 +0100 | [diff] [blame] | 18 | github.com/kr/pretty v0.2.0 // indirect |
elinuxhenrik | fc74391 | 2022-07-29 12:49:07 +0200 | [diff] [blame] | 19 | github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect |
ychacon | 5542d26 | 2022-02-21 14:40:38 +0100 | [diff] [blame] | 20 | github.com/pmezard/go-difflib v1.0.0 // indirect |
elinuxhenrik | fc74391 | 2022-07-29 12:49:07 +0200 | [diff] [blame] | 21 | github.com/prometheus/client_model v0.2.0 // indirect |
| 22 | github.com/prometheus/common v0.32.1 // indirect |
| 23 | github.com/prometheus/procfs v0.7.3 // indirect |
| 24 | golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect |
| 25 | google.golang.org/protobuf v1.26.0 // indirect |
ychacon | d2c54bd | 2022-02-28 13:29:06 +0100 | [diff] [blame] | 26 | gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect |
ychacon | 5542d26 | 2022-02-21 14:40:38 +0100 | [diff] [blame] | 27 | ) |