forked from TykTechnologies/tyk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix 2.9 hybrid compatibility (TykTechnologies#2557)
All broken because we moved gateway files to sub package Move RCP structures to separate package, so they can be imported by MDCB Fix TykTechnologies#2538 Depends on TykTechnologies/gorpc#3
- Loading branch information
Showing
6 changed files
with
71 additions
and
61 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,30 @@ | ||
package apidef | ||
|
||
type InboundData struct { | ||
KeyName string | ||
Value string | ||
SessionState string | ||
Timeout int64 | ||
Per int64 | ||
Expire int64 | ||
} | ||
|
||
type DefRequest struct { | ||
OrgId string | ||
Tags []string | ||
} | ||
|
||
type GroupLoginRequest struct { | ||
UserKey string | ||
GroupID string | ||
} | ||
|
||
type GroupKeySpaceRequest struct { | ||
OrgID string | ||
GroupID string | ||
} | ||
|
||
type KeysValuesPair struct { | ||
Keys []string | ||
Values []string | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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