Skip to content

Commit

Permalink
Fix whitespace indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
rtamalin committed Oct 31, 2024
1 parent 73662c5 commit 300f774
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/handler_authenticate.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ func (a *App) AuthenticateClient(ar *AppRequest) {

// initialise a client registration response
caResp := restapi.ClientAuthenticationResponse{
ClientId: client.Id,
AuthToken: client.AuthToken,
ClientId: client.Id,
AuthToken: client.AuthToken,
RegistrationDate: client.RegistrationDate,
}
ar.Log.Debug("Response", slog.Any("caResp", caResp))
Expand Down
4 changes: 2 additions & 2 deletions app/handler_register.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ func (a *App) RegisterClient(ar *AppRequest) {

// initialise a client registration response
crResp := restapi.ClientRegistrationResponse{
ClientId: client.Id,
AuthToken: client.AuthToken,
ClientId: client.Id,
AuthToken: client.AuthToken,
RegistrationDate: client.RegistrationDate,
}
ar.Log.Debug("Response", slog.Any("crResp", crResp))
Expand Down

0 comments on commit 300f774

Please sign in to comment.