-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove v4 #139
Conversation
@@ -11,27 +11,10 @@ const ( | |||
TimeFormatToken4 = "2006-01-02 15:04:05 MST" | |||
) | |||
|
|||
type AuthnToken interface { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Interface is no longer needed since we're not doing any polymorphism w/ v4 vs v5 tokens.
@@ -3,13 +3,11 @@ | |||
export compose_file="../docker-compose.yml" | |||
|
|||
function announce() { | |||
BLUE='\033[0;34m' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was just super hard to read on default terminal colors so I ditched it.
router Router | ||
} | ||
|
||
type Router interface { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I moved all the methods defined in this interface directly into client.go
for now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah!
Removes all references to Conjur v4, which is no longer supported.