Files
jira/jira.go
T
Mike Pountney 22c72f2351 version bump
2019-10-01 21:33:10 -07:00

20 lines
319 B
Go

package jira
import (
"github.com/coryb/oreo"
)
const VERSION = "1.0.21"
type Jira struct {
Endpoint string `json:"endpoint,omitempty" yaml:"endpoint,omitempty"`
UA HttpClient `json:"-" yaml:"-"`
}
func NewJira(endpoint string) *Jira {
return &Jira{
Endpoint: endpoint,
UA: oreo.New(),
}
}