-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ravi Chamarthy <[email protected]>
- Loading branch information
1 parent
6291f37
commit 61b3f8c
Showing
19 changed files
with
2,303 additions
and
44 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
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,33 +1,39 @@ | ||
module machinerun.io/atomfs | ||
|
||
require ( | ||
github.com/Masterminds/semver/v3 v3.2.1 | ||
github.com/apex/log v1.9.0 | ||
github.com/freddierice/go-losetup v0.0.0-20220711213114-2a14873012db | ||
github.com/martinjungblut/go-cryptsetup v0.0.0-20220520180014-fd0874fd07a6 | ||
github.com/opencontainers/go-digest v1.0.0 | ||
github.com/opencontainers/image-spec v1.1.0-rc2 | ||
github.com/opencontainers/umoci v0.4.8-0.20220412065115-12453f247749 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/stretchr/testify v1.8.1 | ||
github.com/urfave/cli v1.22.12 | ||
golang.org/x/sys v0.6.0 | ||
stackerbuild.io/stacker v1.0.0-rc4.0.20230721004419-db121052a5bd | ||
) | ||
|
||
require ( | ||
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230106234847-43070de90fa1 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect | ||
github.com/cyphar/filepath-securejoin v0.2.3 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/docker/go-units v0.5.0 // indirect | ||
github.com/freddierice/go-losetup v0.0.0-20220711213114-2a14873012db // indirect | ||
github.com/google/go-cmp v0.5.6 // indirect | ||
github.com/klauspost/compress v1.15.15 // indirect | ||
github.com/klauspost/pgzip v1.2.6-0.20220930104621-17e8dac29df8 // indirect | ||
github.com/martinjungblut/go-cryptsetup v0.0.0-20220520180014-fd0874fd07a6 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/opencontainers/image-spec v1.1.0-rc2 // indirect | ||
github.com/opencontainers/runc v1.1.4 // indirect | ||
github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 // indirect | ||
github.com/opencontainers/umoci v0.4.8-0.20220412065115-12453f247749 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rootless-containers/proto/go-proto v0.0.0-20210921234734-69430b6543fb // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
github.com/sirupsen/logrus v1.9.0 // indirect | ||
github.com/vbatts/go-mtree v0.5.2 // indirect | ||
golang.org/x/crypto v0.5.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) | ||
|
||
go 1.21 |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package log | ||
|
||
import ( | ||
"github.com/apex/log" | ||
) | ||
|
||
func Debugf(msg string, v ...interface{}) { | ||
log.Log.Debugf(msg, v...) | ||
} | ||
|
||
func Infof(msg string, v ...interface{}) { | ||
log.Log.Infof(msg, v...) | ||
} | ||
|
||
func Warnf(msg string, v ...interface{}) { | ||
log.Log.Infof(msg, v...) | ||
} | ||
|
||
func Errorf(msg string, v ...interface{}) { | ||
log.Log.Infof(msg, v...) | ||
} | ||
|
||
func Fatalf(msg string, v ...interface{}) { | ||
log.Log.Infof(msg, v...) | ||
} |
Oops, something went wrong.