-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add upload event struct and log execution events (#35)
* add new santa event upload and request types * use new type and log upload events to stdout * remove deprecated use of ioutil * update go mod * bump circleci config to go 1.20 --------- Co-authored-by: Brandon Friess <[email protected]>
- Loading branch information
1 parent
7b53542
commit cdf7c51
Showing
8 changed files
with
88 additions
and
34 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
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,15 +1,20 @@ | ||
module github.com/groob/moroz | ||
|
||
go 1.20 | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.2.0 | ||
github.com/go-kit/kit v0.4.0 | ||
github.com/go-logfmt/logfmt v0.3.0 // indirect | ||
github.com/go-stack/stack v1.7.0 // indirect | ||
github.com/gorilla/context v0.0.0-20160226214623-1ea25387ff6f // indirect | ||
github.com/gorilla/mux v1.6.1 | ||
github.com/kolide/kit v0.0.0-20180912215818-0c28f72eb2b0 | ||
github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515 // indirect | ||
github.com/oklog/run v1.0.0 | ||
github.com/pkg/errors v0.8.0 | ||
) | ||
|
||
require ( | ||
github.com/go-logfmt/logfmt v0.3.0 // indirect | ||
github.com/go-stack/stack v1.7.0 // indirect | ||
github.com/gorilla/context v0.0.0-20160226214623-1ea25387ff6f // indirect | ||
github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515 // indirect | ||
golang.org/x/net v0.0.0-20180124060956-0ed95abb35c4 // indirect | ||
) |
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
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
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