Skip to content

Commit

Permalink
feat: added IsDebug
Browse files Browse the repository at this point in the history
  • Loading branch information
Allan-Nava authored Oct 30, 2023
1 parent c947c35 commit ef96730
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions compress/compress.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import (
type ICompress interface {
//
HealthCheck() error
IsDebug() bool
GetUploads(uploadsPaginated UploadsPaginated) error
//
}
Expand Down
4 changes: 4 additions & 0 deletions compress/resty.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ func (o *compress) HealthCheck() error {
return nil
}

func (o *compress) IsDebug() bool {
return o.debug
}

func(o *compress) GetCliendId() string {
return o.customerName+"_client"
}
Expand Down

0 comments on commit ef96730

Please sign in to comment.