Skip to content

Commit

Permalink
Add go mod files
Browse files Browse the repository at this point in the history
  • Loading branch information
wdesouza committed Apr 10, 2020
1 parent 5a8873d commit 3b8af0b
Show file tree
Hide file tree
Showing 3 changed files with 313 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docker/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,17 @@ package docker
import (
"context"
"fmt"
"github.com/golang/protobuf/ptypes"
"github.com/golang/protobuf/ptypes/timestamp"
"github.com/labbcb/rnnr/pb"
log "github.com/sirupsen/logrus"
"io"
"io/ioutil"
"path/filepath"
"strings"
"time"

"github.com/golang/protobuf/ptypes"
"github.com/golang/protobuf/ptypes/timestamp"
"github.com/labbcb/rnnr/pb"
log "github.com/sirupsen/logrus"

"github.com/docker/docker/api/types"
"github.com/docker/docker/api/types/container"
"github.com/docker/docker/api/types/mount"
Expand Down
23 changes: 23 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
module github.com/labbcb/rnnr

go 1.14

require (
github.com/containerd/containerd v1.3.3 // indirect
github.com/docker/distribution v2.7.1+incompatible // indirect
github.com/docker/docker v17.12.0-ce-rc1.0.20200409190522-9c71a2be3193+incompatible
github.com/docker/go-connections v0.4.0 // indirect
github.com/docker/go-units v0.4.0 // indirect
github.com/golang/protobuf v1.3.5
github.com/google/uuid v1.1.1
github.com/gorilla/mux v1.7.4
github.com/mitchellh/go-homedir v1.1.0
github.com/opencontainers/go-digest v1.0.0-rc1 // indirect
github.com/opencontainers/image-spec v1.0.1 // indirect
github.com/pbnjay/memory v0.0.0-20190104145345-974d429e7ae4
github.com/sirupsen/logrus v1.5.0
github.com/spf13/cobra v0.0.7
github.com/spf13/viper v1.6.3
go.mongodb.org/mongo-driver v1.3.2
google.golang.org/grpc v1.28.1
)
Loading

0 comments on commit 3b8af0b

Please sign in to comment.