-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Converting c8y_test to a module * Added parsing of RFC3339Nano during UnmarshalJSON * Added eventBuilder struct * Added alarmBuilder struct (wip) * Build all branches by default * Adding paths to local packages * Removed invalid package entry * Removed nested go.mod files in place of one root go.mod file * Refactoring even and alarm builders * Renamed CustomOperation struct to OperationBuilder and added tests * Removed websocket log messages
- Loading branch information
1 parent
d4dface
commit e7b6b13
Showing
19 changed files
with
651 additions
and
306 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,35 @@ | ||
module github.com/reubenmiller/go-c8y | ||
|
||
replace github.com/reubenmiller/go-c8y/pkg/microservice => ./pkg/microservice | ||
|
||
replace github.com/reubenmiller/go-c8y/test/c8y_test => ./test/c8y_test | ||
|
||
replace github.com/reubenmiller/go-c8y/test/c8y_microservice => ./test/c8y_microservice | ||
|
||
require ( | ||
github.com/golang/protobuf v1.3.1 // indirect | ||
github.com/kr/pretty v0.1.0 // indirect | ||
github.com/BurntSushi/toml v0.3.1 // indirect | ||
github.com/araddon/dateparse v0.0.0-20190329160016-74dc0e29b01f | ||
github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect | ||
github.com/google/go-querystring v1.0.0 | ||
github.com/gorilla/websocket v1.4.0 | ||
github.com/labstack/echo v3.3.10+incompatible | ||
github.com/labstack/gommon v0.2.8 // indirect | ||
github.com/mattn/go-colorable v0.1.1 // indirect | ||
github.com/mattn/go-isatty v0.0.7 // indirect | ||
github.com/obeattie/ohmyglob v0.0.0-20150811221449-290764208a0d | ||
github.com/pkg/errors v0.8.1 | ||
github.com/reubenmiller/go-c8y/pkg/c8y v0.0.0-20190401170124-d1ab646b69c4 | ||
github.com/reubenmiller/go-c8y/pkg/microservice v0.0.0-20190401160529-913a4f3caafc | ||
github.com/spf13/afero v1.2.2 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/prometheus/client_golang v0.9.2 | ||
github.com/simplereach/timeutils v1.2.0 // indirect | ||
github.com/spf13/viper v1.3.2 | ||
github.com/stretchr/testify v1.3.0 // indirect | ||
golang.org/x/crypto v0.0.0-20190325154230-a5d413f7728c // indirect | ||
golang.org/x/net v0.0.0-20190328230028-74de082e2cca // indirect | ||
golang.org/x/sys v0.0.0-20190329044733-9eb1bfa1ce65 // indirect | ||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect | ||
github.com/tidwall/gjson v1.2.1 | ||
github.com/tidwall/match v1.0.1 // indirect | ||
github.com/tidwall/pretty v0.0.0-20190325153808-1166b9ac2b65 // indirect | ||
github.com/valyala/fasttemplate v1.0.1 // indirect | ||
go.uber.org/atomic v1.3.2 // indirect | ||
go.uber.org/multierr v1.1.0 // indirect | ||
go.uber.org/zap v1.9.1 | ||
gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce // indirect | ||
gopkg.in/natefinch/lumberjack.v2 v2.0.0 | ||
gopkg.in/robfig/cron.v2 v2.0.0-20150107220207-be2e0b0deed5 | ||
gopkg.in/tomb.v2 v2.0.0-20161208151619-d5d1b5820637 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.