chore: lint

This commit is contained in:
Felipe M 2025-08-11 13:29:01 +02:00
parent 9d2dd5619b
commit 6e45352f3e
No known key found for this signature in database
GPG key ID: 52E5D65FCF99808A
3 changed files with 6 additions and 6 deletions

View file

@ -73,10 +73,10 @@ type RegistrationResponse struct {
}
// NewInBandRegistration creates a new InBandRegistration XEP handler
func NewInBandRegistration(client *Client, logger logger.Logger) *InBandRegistration {
func NewInBandRegistration(client *Client, log logger.Logger) *InBandRegistration {
return &InBandRegistration{
client: client,
logger: logger,
logger: log,
enabled: true, // Default enabled
}
}