-
Notifications
You must be signed in to change notification settings - Fork 55
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
Feat/r17 exmaple #37
Feat/r17 exmaple #37
Conversation
9867502
to
8b09ae2
Compare
4b30bc4
to
9f66bed
Compare
// Index is the index handler. | ||
func Index(c *gin.Context) { | ||
c.String(http.StatusOK, "Hello World!") | ||
} |
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.
Removed.
internal/sbi/api_accesstoken.go
Outdated
@@ -93,7 +108,7 @@ func HTTPAccessTokenRequest(c *gin.Context) { | |||
req := httpwrapper.NewRequest(c.Request, accessTokenReq) | |||
req.Params["paramName"] = c.Params.ByName("paramName") | |||
|
|||
httpResponse := producer.HandleAccessTokenRequest(req) | |||
httpResponse := s.Processor().HandleAccessTokenRequest(req) |
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.
response to be check
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.
It has been done in step 11.
Note: Besides, |
c7f29db
to
1d59148
Compare
@@ -14,7 +14,7 @@ jobs: | |||
runs-on: ubuntu-latest | |||
strategy: | |||
matrix: | |||
go: [ '1.18' ] | |||
go: [ '1.19' ] |
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.
update to 1.21
@@ -11,7 +11,7 @@ jobs: | |||
runs-on: ubuntu-latest | |||
strategy: | |||
matrix: | |||
go: [ '1.18', '1.21' ] | |||
go: [ '1.19', '1.21' ] |
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.
update to 1.21 only
No description provided.