Skip to content

Commit

Permalink
added constants
Browse files Browse the repository at this point in the history
  • Loading branch information
Allan-Nava authored Feb 3, 2023
1 parent b3a0862 commit ecf2e94
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mist/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import (

"github.com/go-resty/resty/v2"
)

//
//
func BuildMist(url string, debug bool, header *HeaderConfigurator) (*MistGo, error) {
Expand Down Expand Up @@ -40,3 +39,5 @@ func (o *MistGo) debugPrint(data interface{}) {
log.Println(data)
}
}

//
7 changes: 7 additions & 0 deletions mist/constants.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package mist_go

const (
// AUTH
SESSION = "/"
//
)
3 changes: 3 additions & 0 deletions mist/mist.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ type MistGo struct {
}

type IMistGoClient interface {
//
HealthCheck() error
IsDebug() bool
//
}

func (o *MistGo) HealthCheck() error {
Expand Down

0 comments on commit ecf2e94

Please sign in to comment.