-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* WIP: http endpoints types * add generated code Signed-off-by: Matthias Bertschy <[email protected]> * WIP: added NetworkDirection * bump code generation script Signed-off-by: Matthias Bertschy <[email protected]> * WIP: Fixed generation script * WIP: Removed HTTPEndpoint deepcopy * WIP: Removed HTTPEndpoint from softwarecomposition client * WIP: Fixed generated files * WIP: Fixed types.go * WIP: Removed NetworkDirection * WIP: Removed logs * WIP: Move to string * WIP: Convert to string * WIP: Added consts * WIP: Multiple header values * WIP: Added Path & URL analyzing * WIP: removed debug logs * WIP: Handle duplicates url's * Http object type * add profobufs and fixes Signed-off-by: Matthias Bertschy <[email protected]> * WIP: Fixed typos & added benchmark tests * Added coverage & benchmark tests * WIP: Fixed bugs due tests * WIP: Added extra and tests * WIP: Added tests for extra * WIP: Removed Extra field * WIP: Code regeneration * WIP: Remove omitempty for bool valuie * WIP: Headers into RawMessage * WIP: Added GetHeaders * WIP: tidy * Removed typo & change log level * Added tests for endpoints * WIP: Added comment * Fixed application profile tests --------- Signed-off-by: Matthias Bertschy <[email protected]> Co-authored-by: Matthias Bertschy <[email protected]>
- Loading branch information
Showing
23 changed files
with
2,365 additions
and
694 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package consts | ||
|
||
type NetworkDirection string | ||
|
||
const ( | ||
Inbound NetworkDirection = "inbound" | ||
Outbound NetworkDirection = "outbound" | ||
) |
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
Oops, something went wrong.