Skip to content

Commit

Permalink
🐛 Fix a bug: revoke token
Browse files Browse the repository at this point in the history
  • Loading branch information
k33g committed Jul 1, 2023
1 parent 0cc7e90 commit 0909dcc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ type HTTPResponse struct {
}

// strSeparator is use to create a string from a slice
// ex: "Content-Type":"application/json; charset=utf-8","PRIVATE-TOKEN":"glpat-mmysLDdMx532zxHgsgzF"
// ex: "Content-Type":"application/json; charset=utf-8","PRIVATE-TOKEN":"glpat-some-letters"
const strSeparator = ","
// fieldSeparator is used to create a slice from a map
// ex: "PRIVATE-TOKEN":"glpat-mmysLDdMx532zxHgsgzF"
// ex: "PRIVATE-TOKEN":"glpat-some-letters"
const fieldSeparator = ":"
// quote is used to create a slice from a map
// to add double quote before and after a fieldname or a value
Expand Down

0 comments on commit 0909dcc

Please sign in to comment.