File tree Expand file tree Collapse file tree 16 files changed +31
-4
lines changed Expand file tree Collapse file tree 16 files changed +31
-4
lines changed Original file line number Diff line number Diff line change 1+ // Package collections contains helper functions for interacting with collection structs like Slices and Maps.
2+ package collections
Original file line number Diff line number Diff line change 1+ // Package entrypoint contains helper functions for setting up a urfave/cli application that can be used as the CLI
2+ // entrypoint.
3+ package entrypoint
Original file line number Diff line number Diff line change 1+ // Package errors contains helper functions for returning errors from a CLI.
2+ package errors
Original file line number Diff line number Diff line change 1+ // Package files contains helper functions related to the file system.
2+ package files
Original file line number Diff line number Diff line change 1+ // Package lock contains helper functions for maintaining a lock table and utilizing it to guard critical sections in
2+ // the code.
3+ package lock
Original file line number Diff line number Diff line change 1+ // Package logging contains helper functions for setting up a CLI wide logger that can be used to log output at various
2+ // levels.
3+ package logging
Original file line number Diff line number Diff line change 1+ // Package random provides utilities and functions for generating random data.
2+ package random
Original file line number Diff line number Diff line change 1- // Package random provides utilities and functions for generating random data.
21package random
32
43import (
Original file line number Diff line number Diff line change 1+ // Package retry contains helper functions that allow you to retry functions on error.
2+ package retry
Original file line number Diff line number Diff line change 1+ // Package shell contains helper functions for starting and interacting with subprocesses.
2+ package shell
You can’t perform that action at this time.
0 commit comments